XiangShan KMH CI Test
Name: ci-bot
Email: ci-bot@no-replay.com

Summary

66
16 failed 28 passed 22 skipped

Line Coverage

Coverage Rate Hint Lines Total Lines Detail
75.18% 8774 11670 View Details

Functional Coverage

Coverage Rate Hint Points Total Points Detail
7.32% 3 41 View Details

Tests

ut_backend/ctrl_block/decode/test_rv_decode.py 3 0:00:05.731634

PASSED test_rvc_inst 0:00:01.554735

Test the RVC instruction set, an example of the tag version in range.

Args:

decoder (fixure): the fixture of the decoder

Setup

Call

Teardown

PASSED test_rvi_inst 0:00:01.918463

Test the RVI instruction set. randomly generate instructions for testing

Args:

decoder (fixure): the fixture of the decoder

Setup

Call

Teardown

PASSED test_rv_custom_inst 0:00:02.258436

Test the custom instruction set. Testing of V extension instructions, which are not actually used

Args:

decoder (fixure): the fixture of the decoder

Setup

Call

Teardown

ut_frontend/bpu/tagesc/test/test_random.py 8 0:00:21.562319

FAILED test_random[1] 0:00:02.679648

Setup

Captured log setup
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

Call

[gw1] linux -- Python 3.10.12 /usr/bin/python3

self = 

    def runtest(self) -> None:
        self.obj = wrap_in_sync(
            # https://github.com/pytest-dev/pytest-asyncio/issues/596
            self.obj,  # type: ignore[has-type]
        )
>       super().runtest()

/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:457: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:929: in inner
    _loop.run_until_complete(task)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <_UnixSelectorEventLoop running=False closed=False debug=False>
future =  wait_for=>

    def run_until_complete(self, future):
        """Run until the Future is done.
    
        If the argument is a coroutine, it is wrapped in a Task.
    
        WARNING: It would be disastrous to call run_until_complete()
        with the same coroutine twice -- it would wrap it in two
        different Tasks and that can't be good.
    
        Return the Future's result, or raise its exception.
        """
        self._check_closed()
        self._check_running()
    
        new_task = not futures.isfuture(future)
        future = tasks.ensure_future(future, loop=self)
        if new_task:
            # An exception is raised if the future didn't complete, so there
            # is no need to log the "destroy pending task" message
            future._log_destroy_pending = False
    
        future.add_done_callback(_run_until_complete_cb)
        try:
            self.run_forever()
        except:
            if new_task and future.done() and not future.cancelled():
                # The coroutine raised a BaseException. Consume the exception
                # to not log a warning, the caller doesn't have access to the
                # local task.
                future.exception()
            raise
        finally:
            future.remove_done_callback(_run_until_complete_cb)
        if not future.done():
>           raise RuntimeError('Event loop stopped before Future completed.')
E           RuntimeError: Event loop stopped before Future completed.

/usr/lib/python3.10/asyncio/base_events.py:647: RuntimeError
Captured log call
ERROR    asyncio:base_events.py:1758 Task exception was never retrieved
future: <Task finished name='__clock_loop' coro=<__clock_loop() done, defined at /usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py:135> exception=AttributeError("'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'")>
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py", line 143, in __clock_loop
    dut.Step(1)
  File "/home/UnityChipForXiangShan/dut/Tage_SC/__init__.py", line 1749, in Step
    self.xclock.Step(i)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 234, in XClock_Step
    XClock_Check_Exceptions(self)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 225, in XClock_Check_Exceptions
    raise self.exceptions[0]
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 160, in call
    return self.func(cycle, *self.args, **self.kwargs)
  File "/usr/local/lib/python3.10/dist-packages/toffee_test/request.py", line 30, in <lambda>
    return lambda _: cov_point.sample()
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 397, in sample
    hinted, onece = self.__check__(v)
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 329, in __check__
    checked = b(points["taget"])
  File "/home/UnityChipForXiangShan/ut_frontend/bpu/tagesc/test/checkpoints_tage_train.py", line 109, in update_always_taken
    always_taken = getattr(dut, f"io_update_bits_ftb_entry_always_taken_{way}").value != 0
AttributeError: 'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'. Did you mean: 'io_update_bits_ftb_entry_brSlots_0'?

Teardown

Captured log teardown
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

FAILED test_random[5] 0:00:02.689795

Setup

Captured log setup
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

Call

[gw3] linux -- Python 3.10.12 /usr/bin/python3

self = 

    def runtest(self) -> None:
        self.obj = wrap_in_sync(
            # https://github.com/pytest-dev/pytest-asyncio/issues/596
            self.obj,  # type: ignore[has-type]
        )
>       super().runtest()

/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:457: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:929: in inner
    _loop.run_until_complete(task)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <_UnixSelectorEventLoop running=False closed=False debug=False>
future =  wait_for=>

    def run_until_complete(self, future):
        """Run until the Future is done.
    
        If the argument is a coroutine, it is wrapped in a Task.
    
        WARNING: It would be disastrous to call run_until_complete()
        with the same coroutine twice -- it would wrap it in two
        different Tasks and that can't be good.
    
        Return the Future's result, or raise its exception.
        """
        self._check_closed()
        self._check_running()
    
        new_task = not futures.isfuture(future)
        future = tasks.ensure_future(future, loop=self)
        if new_task:
            # An exception is raised if the future didn't complete, so there
            # is no need to log the "destroy pending task" message
            future._log_destroy_pending = False
    
        future.add_done_callback(_run_until_complete_cb)
        try:
            self.run_forever()
        except:
            if new_task and future.done() and not future.cancelled():
                # The coroutine raised a BaseException. Consume the exception
                # to not log a warning, the caller doesn't have access to the
                # local task.
                future.exception()
            raise
        finally:
            future.remove_done_callback(_run_until_complete_cb)
        if not future.done():
>           raise RuntimeError('Event loop stopped before Future completed.')
E           RuntimeError: Event loop stopped before Future completed.

/usr/lib/python3.10/asyncio/base_events.py:647: RuntimeError
Captured log call
ERROR    asyncio:base_events.py:1758 Task exception was never retrieved
future: <Task finished name='__clock_loop' coro=<__clock_loop() done, defined at /usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py:135> exception=AttributeError("'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'")>
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py", line 143, in __clock_loop
    dut.Step(1)
  File "/home/UnityChipForXiangShan/dut/Tage_SC/__init__.py", line 1749, in Step
    self.xclock.Step(i)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 234, in XClock_Step
    XClock_Check_Exceptions(self)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 225, in XClock_Check_Exceptions
    raise self.exceptions[0]
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 160, in call
    return self.func(cycle, *self.args, **self.kwargs)
  File "/usr/local/lib/python3.10/dist-packages/toffee_test/request.py", line 30, in <lambda>
    return lambda _: cov_point.sample()
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 397, in sample
    hinted, onece = self.__check__(v)
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 329, in __check__
    checked = b(points["taget"])
  File "/home/UnityChipForXiangShan/ut_frontend/bpu/tagesc/test/checkpoints_tage_train.py", line 109, in update_always_taken
    always_taken = getattr(dut, f"io_update_bits_ftb_entry_always_taken_{way}").value != 0
AttributeError: 'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'. Did you mean: 'io_update_bits_ftb_entry_brSlots_0'?

Teardown

Captured log teardown
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

FAILED test_random[6] 0:00:02.678620

Setup

Captured log setup
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

Call

[gw3] linux -- Python 3.10.12 /usr/bin/python3

self = 

    def runtest(self) -> None:
        self.obj = wrap_in_sync(
            # https://github.com/pytest-dev/pytest-asyncio/issues/596
            self.obj,  # type: ignore[has-type]
        )
>       super().runtest()

/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:457: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:929: in inner
    _loop.run_until_complete(task)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <_UnixSelectorEventLoop running=False closed=False debug=False>
future =  wait_for=>

    def run_until_complete(self, future):
        """Run until the Future is done.
    
        If the argument is a coroutine, it is wrapped in a Task.
    
        WARNING: It would be disastrous to call run_until_complete()
        with the same coroutine twice -- it would wrap it in two
        different Tasks and that can't be good.
    
        Return the Future's result, or raise its exception.
        """
        self._check_closed()
        self._check_running()
    
        new_task = not futures.isfuture(future)
        future = tasks.ensure_future(future, loop=self)
        if new_task:
            # An exception is raised if the future didn't complete, so there
            # is no need to log the "destroy pending task" message
            future._log_destroy_pending = False
    
        future.add_done_callback(_run_until_complete_cb)
        try:
            self.run_forever()
        except:
            if new_task and future.done() and not future.cancelled():
                # The coroutine raised a BaseException. Consume the exception
                # to not log a warning, the caller doesn't have access to the
                # local task.
                future.exception()
            raise
        finally:
            future.remove_done_callback(_run_until_complete_cb)
        if not future.done():
>           raise RuntimeError('Event loop stopped before Future completed.')
E           RuntimeError: Event loop stopped before Future completed.

/usr/lib/python3.10/asyncio/base_events.py:647: RuntimeError
Captured log call
ERROR    asyncio:base_events.py:1758 Task exception was never retrieved
future: <Task finished name='__clock_loop' coro=<__clock_loop() done, defined at /usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py:135> exception=AttributeError("'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'")>
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py", line 143, in __clock_loop
    dut.Step(1)
  File "/home/UnityChipForXiangShan/dut/Tage_SC/__init__.py", line 1749, in Step
    self.xclock.Step(i)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 234, in XClock_Step
    XClock_Check_Exceptions(self)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 225, in XClock_Check_Exceptions
    raise self.exceptions[0]
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 160, in call
    return self.func(cycle, *self.args, **self.kwargs)
  File "/usr/local/lib/python3.10/dist-packages/toffee_test/request.py", line 30, in <lambda>
    return lambda _: cov_point.sample()
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 397, in sample
    hinted, onece = self.__check__(v)
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 329, in __check__
    checked = b(points["taget"])
  File "/home/UnityChipForXiangShan/ut_frontend/bpu/tagesc/test/checkpoints_tage_train.py", line 109, in update_always_taken
    always_taken = getattr(dut, f"io_update_bits_ftb_entry_always_taken_{way}").value != 0
AttributeError: 'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'. Did you mean: 'io_update_bits_ftb_entry_brSlots_0'?

Teardown

Captured log teardown
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

FAILED test_random[2] 0:00:02.696536

Setup

Captured log setup
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

Call

[gw1] linux -- Python 3.10.12 /usr/bin/python3

self = 

    def runtest(self) -> None:
        self.obj = wrap_in_sync(
            # https://github.com/pytest-dev/pytest-asyncio/issues/596
            self.obj,  # type: ignore[has-type]
        )
>       super().runtest()

/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:457: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:929: in inner
    _loop.run_until_complete(task)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <_UnixSelectorEventLoop running=False closed=False debug=False>
future =  wait_for=>

    def run_until_complete(self, future):
        """Run until the Future is done.
    
        If the argument is a coroutine, it is wrapped in a Task.
    
        WARNING: It would be disastrous to call run_until_complete()
        with the same coroutine twice -- it would wrap it in two
        different Tasks and that can't be good.
    
        Return the Future's result, or raise its exception.
        """
        self._check_closed()
        self._check_running()
    
        new_task = not futures.isfuture(future)
        future = tasks.ensure_future(future, loop=self)
        if new_task:
            # An exception is raised if the future didn't complete, so there
            # is no need to log the "destroy pending task" message
            future._log_destroy_pending = False
    
        future.add_done_callback(_run_until_complete_cb)
        try:
            self.run_forever()
        except:
            if new_task and future.done() and not future.cancelled():
                # The coroutine raised a BaseException. Consume the exception
                # to not log a warning, the caller doesn't have access to the
                # local task.
                future.exception()
            raise
        finally:
            future.remove_done_callback(_run_until_complete_cb)
        if not future.done():
>           raise RuntimeError('Event loop stopped before Future completed.')
E           RuntimeError: Event loop stopped before Future completed.

/usr/lib/python3.10/asyncio/base_events.py:647: RuntimeError
Captured log call
ERROR    asyncio:base_events.py:1758 Task exception was never retrieved
future: <Task finished name='__clock_loop' coro=<__clock_loop() done, defined at /usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py:135> exception=AttributeError("'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'")>
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py", line 143, in __clock_loop
    dut.Step(1)
  File "/home/UnityChipForXiangShan/dut/Tage_SC/__init__.py", line 1749, in Step
    self.xclock.Step(i)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 234, in XClock_Step
    XClock_Check_Exceptions(self)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 225, in XClock_Check_Exceptions
    raise self.exceptions[0]
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 160, in call
    return self.func(cycle, *self.args, **self.kwargs)
  File "/usr/local/lib/python3.10/dist-packages/toffee_test/request.py", line 30, in <lambda>
    return lambda _: cov_point.sample()
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 397, in sample
    hinted, onece = self.__check__(v)
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 329, in __check__
    checked = b(points["taget"])
  File "/home/UnityChipForXiangShan/ut_frontend/bpu/tagesc/test/checkpoints_tage_train.py", line 109, in update_always_taken
    always_taken = getattr(dut, f"io_update_bits_ftb_entry_always_taken_{way}").value != 0
AttributeError: 'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'. Did you mean: 'io_update_bits_ftb_entry_brSlots_0'?

Teardown

Captured log teardown
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

FAILED test_random[7] 0:00:02.644789

Setup

Captured log setup
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

Call

[gw3] linux -- Python 3.10.12 /usr/bin/python3

self = 

    def runtest(self) -> None:
        self.obj = wrap_in_sync(
            # https://github.com/pytest-dev/pytest-asyncio/issues/596
            self.obj,  # type: ignore[has-type]
        )
>       super().runtest()

/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:457: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:929: in inner
    _loop.run_until_complete(task)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <_UnixSelectorEventLoop running=False closed=False debug=False>
future =  wait_for=>

    def run_until_complete(self, future):
        """Run until the Future is done.
    
        If the argument is a coroutine, it is wrapped in a Task.
    
        WARNING: It would be disastrous to call run_until_complete()
        with the same coroutine twice -- it would wrap it in two
        different Tasks and that can't be good.
    
        Return the Future's result, or raise its exception.
        """
        self._check_closed()
        self._check_running()
    
        new_task = not futures.isfuture(future)
        future = tasks.ensure_future(future, loop=self)
        if new_task:
            # An exception is raised if the future didn't complete, so there
            # is no need to log the "destroy pending task" message
            future._log_destroy_pending = False
    
        future.add_done_callback(_run_until_complete_cb)
        try:
            self.run_forever()
        except:
            if new_task and future.done() and not future.cancelled():
                # The coroutine raised a BaseException. Consume the exception
                # to not log a warning, the caller doesn't have access to the
                # local task.
                future.exception()
            raise
        finally:
            future.remove_done_callback(_run_until_complete_cb)
        if not future.done():
>           raise RuntimeError('Event loop stopped before Future completed.')
E           RuntimeError: Event loop stopped before Future completed.

/usr/lib/python3.10/asyncio/base_events.py:647: RuntimeError
Captured log call
ERROR    asyncio:base_events.py:1758 Task exception was never retrieved
future: <Task finished name='__clock_loop' coro=<__clock_loop() done, defined at /usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py:135> exception=AttributeError("'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'")>
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py", line 143, in __clock_loop
    dut.Step(1)
  File "/home/UnityChipForXiangShan/dut/Tage_SC/__init__.py", line 1749, in Step
    self.xclock.Step(i)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 234, in XClock_Step
    XClock_Check_Exceptions(self)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 225, in XClock_Check_Exceptions
    raise self.exceptions[0]
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 160, in call
    return self.func(cycle, *self.args, **self.kwargs)
  File "/usr/local/lib/python3.10/dist-packages/toffee_test/request.py", line 30, in <lambda>
    return lambda _: cov_point.sample()
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 397, in sample
    hinted, onece = self.__check__(v)
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 329, in __check__
    checked = b(points["taget"])
  File "/home/UnityChipForXiangShan/ut_frontend/bpu/tagesc/test/checkpoints_tage_train.py", line 109, in update_always_taken
    always_taken = getattr(dut, f"io_update_bits_ftb_entry_always_taken_{way}").value != 0
AttributeError: 'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'. Did you mean: 'io_update_bits_ftb_entry_brSlots_0'?

Teardown

Captured log teardown
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

FAILED test_random[3] 0:00:02.715028

Setup

Captured log setup
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

Call

[gw1] linux -- Python 3.10.12 /usr/bin/python3

self = 

    def runtest(self) -> None:
        self.obj = wrap_in_sync(
            # https://github.com/pytest-dev/pytest-asyncio/issues/596
            self.obj,  # type: ignore[has-type]
        )
>       super().runtest()

/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:457: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:929: in inner
    _loop.run_until_complete(task)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <_UnixSelectorEventLoop running=False closed=False debug=False>
future =  wait_for=>

    def run_until_complete(self, future):
        """Run until the Future is done.
    
        If the argument is a coroutine, it is wrapped in a Task.
    
        WARNING: It would be disastrous to call run_until_complete()
        with the same coroutine twice -- it would wrap it in two
        different Tasks and that can't be good.
    
        Return the Future's result, or raise its exception.
        """
        self._check_closed()
        self._check_running()
    
        new_task = not futures.isfuture(future)
        future = tasks.ensure_future(future, loop=self)
        if new_task:
            # An exception is raised if the future didn't complete, so there
            # is no need to log the "destroy pending task" message
            future._log_destroy_pending = False
    
        future.add_done_callback(_run_until_complete_cb)
        try:
            self.run_forever()
        except:
            if new_task and future.done() and not future.cancelled():
                # The coroutine raised a BaseException. Consume the exception
                # to not log a warning, the caller doesn't have access to the
                # local task.
                future.exception()
            raise
        finally:
            future.remove_done_callback(_run_until_complete_cb)
        if not future.done():
>           raise RuntimeError('Event loop stopped before Future completed.')
E           RuntimeError: Event loop stopped before Future completed.

/usr/lib/python3.10/asyncio/base_events.py:647: RuntimeError
Captured log call
ERROR    asyncio:base_events.py:1758 Task exception was never retrieved
future: <Task finished name='__clock_loop' coro=<__clock_loop() done, defined at /usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py:135> exception=AttributeError("'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'")>
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py", line 143, in __clock_loop
    dut.Step(1)
  File "/home/UnityChipForXiangShan/dut/Tage_SC/__init__.py", line 1749, in Step
    self.xclock.Step(i)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 234, in XClock_Step
    XClock_Check_Exceptions(self)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 225, in XClock_Check_Exceptions
    raise self.exceptions[0]
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 160, in call
    return self.func(cycle, *self.args, **self.kwargs)
  File "/usr/local/lib/python3.10/dist-packages/toffee_test/request.py", line 30, in <lambda>
    return lambda _: cov_point.sample()
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 397, in sample
    hinted, onece = self.__check__(v)
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 329, in __check__
    checked = b(points["taget"])
  File "/home/UnityChipForXiangShan/ut_frontend/bpu/tagesc/test/checkpoints_tage_train.py", line 109, in update_always_taken
    always_taken = getattr(dut, f"io_update_bits_ftb_entry_always_taken_{way}").value != 0
AttributeError: 'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'. Did you mean: 'io_update_bits_ftb_entry_brSlots_0'?

Teardown

Captured log teardown
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

FAILED test_random[0] 0:00:02.764721

Setup

Captured log setup
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

Call

[gw0] linux -- Python 3.10.12 /usr/bin/python3

self = 

    def runtest(self) -> None:
        self.obj = wrap_in_sync(
            # https://github.com/pytest-dev/pytest-asyncio/issues/596
            self.obj,  # type: ignore[has-type]
        )
>       super().runtest()

/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:457: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:929: in inner
    _loop.run_until_complete(task)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <_UnixSelectorEventLoop running=False closed=False debug=False>
future =  wait_for=>

    def run_until_complete(self, future):
        """Run until the Future is done.
    
        If the argument is a coroutine, it is wrapped in a Task.
    
        WARNING: It would be disastrous to call run_until_complete()
        with the same coroutine twice -- it would wrap it in two
        different Tasks and that can't be good.
    
        Return the Future's result, or raise its exception.
        """
        self._check_closed()
        self._check_running()
    
        new_task = not futures.isfuture(future)
        future = tasks.ensure_future(future, loop=self)
        if new_task:
            # An exception is raised if the future didn't complete, so there
            # is no need to log the "destroy pending task" message
            future._log_destroy_pending = False
    
        future.add_done_callback(_run_until_complete_cb)
        try:
            self.run_forever()
        except:
            if new_task and future.done() and not future.cancelled():
                # The coroutine raised a BaseException. Consume the exception
                # to not log a warning, the caller doesn't have access to the
                # local task.
                future.exception()
            raise
        finally:
            future.remove_done_callback(_run_until_complete_cb)
        if not future.done():
>           raise RuntimeError('Event loop stopped before Future completed.')
E           RuntimeError: Event loop stopped before Future completed.

/usr/lib/python3.10/asyncio/base_events.py:647: RuntimeError
Captured log call
ERROR    asyncio:base_events.py:1758 Task exception was never retrieved
future: <Task finished name='__clock_loop' coro=<__clock_loop() done, defined at /usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py:135> exception=AttributeError("'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'")>
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py", line 143, in __clock_loop
    dut.Step(1)
  File "/home/UnityChipForXiangShan/dut/Tage_SC/__init__.py", line 1749, in Step
    self.xclock.Step(i)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 234, in XClock_Step
    XClock_Check_Exceptions(self)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 225, in XClock_Check_Exceptions
    raise self.exceptions[0]
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 160, in call
    return self.func(cycle, *self.args, **self.kwargs)
  File "/usr/local/lib/python3.10/dist-packages/toffee_test/request.py", line 30, in <lambda>
    return lambda _: cov_point.sample()
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 397, in sample
    hinted, onece = self.__check__(v)
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 329, in __check__
    checked = b(points["taget"])
  File "/home/UnityChipForXiangShan/ut_frontend/bpu/tagesc/test/checkpoints_tage_train.py", line 109, in update_always_taken
    always_taken = getattr(dut, f"io_update_bits_ftb_entry_always_taken_{way}").value != 0
AttributeError: 'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'. Did you mean: 'io_update_bits_ftb_entry_brSlots_0'?

Teardown

Captured log teardown
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

FAILED test_random[4] 0:00:02.693181

Setup

Captured log setup
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

Call

[gw1] linux -- Python 3.10.12 /usr/bin/python3

self = 

    def runtest(self) -> None:
        self.obj = wrap_in_sync(
            # https://github.com/pytest-dev/pytest-asyncio/issues/596
            self.obj,  # type: ignore[has-type]
        )
>       super().runtest()

/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:457: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:929: in inner
    _loop.run_until_complete(task)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <_UnixSelectorEventLoop running=False closed=False debug=False>
future =  wait_for=>

    def run_until_complete(self, future):
        """Run until the Future is done.
    
        If the argument is a coroutine, it is wrapped in a Task.
    
        WARNING: It would be disastrous to call run_until_complete()
        with the same coroutine twice -- it would wrap it in two
        different Tasks and that can't be good.
    
        Return the Future's result, or raise its exception.
        """
        self._check_closed()
        self._check_running()
    
        new_task = not futures.isfuture(future)
        future = tasks.ensure_future(future, loop=self)
        if new_task:
            # An exception is raised if the future didn't complete, so there
            # is no need to log the "destroy pending task" message
            future._log_destroy_pending = False
    
        future.add_done_callback(_run_until_complete_cb)
        try:
            self.run_forever()
        except:
            if new_task and future.done() and not future.cancelled():
                # The coroutine raised a BaseException. Consume the exception
                # to not log a warning, the caller doesn't have access to the
                # local task.
                future.exception()
            raise
        finally:
            future.remove_done_callback(_run_until_complete_cb)
        if not future.done():
>           raise RuntimeError('Event loop stopped before Future completed.')
E           RuntimeError: Event loop stopped before Future completed.

/usr/lib/python3.10/asyncio/base_events.py:647: RuntimeError
Captured log call
ERROR    asyncio:base_events.py:1758 Task exception was never retrieved
future: <Task finished name='__clock_loop' coro=<__clock_loop() done, defined at /usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py:135> exception=AttributeError("'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'")>
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py", line 143, in __clock_loop
    dut.Step(1)
  File "/home/UnityChipForXiangShan/dut/Tage_SC/__init__.py", line 1749, in Step
    self.xclock.Step(i)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 234, in XClock_Step
    XClock_Check_Exceptions(self)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 225, in XClock_Check_Exceptions
    raise self.exceptions[0]
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 160, in call
    return self.func(cycle, *self.args, **self.kwargs)
  File "/usr/local/lib/python3.10/dist-packages/toffee_test/request.py", line 30, in <lambda>
    return lambda _: cov_point.sample()
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 397, in sample
    hinted, onece = self.__check__(v)
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 329, in __check__
    checked = b(points["taget"])
  File "/home/UnityChipForXiangShan/ut_frontend/bpu/tagesc/test/checkpoints_tage_train.py", line 109, in update_always_taken
    always_taken = getattr(dut, f"io_update_bits_ftb_entry_always_taken_{way}").value != 0
AttributeError: 'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'. Did you mean: 'io_update_bits_ftb_entry_brSlots_0'?

Teardown

Captured log teardown
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

ut_frontend/bpu/tagesc/test/test_spec_case.py 8 0:00:22.294086

FAILED test_bank_tick_ctrs 0:00:02.821163

Setup

Captured log setup
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

Call

[gw2] linux -- Python 3.10.12 /usr/bin/python3

self = 

    def runtest(self) -> None:
        self.obj = wrap_in_sync(
            # https://github.com/pytest-dev/pytest-asyncio/issues/596
            self.obj,  # type: ignore[has-type]
        )
>       super().runtest()

/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:457: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:929: in inner
    _loop.run_until_complete(task)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <_UnixSelectorEventLoop running=False closed=False debug=False>
future =  wait_for=>

    def run_until_complete(self, future):
        """Run until the Future is done.
    
        If the argument is a coroutine, it is wrapped in a Task.
    
        WARNING: It would be disastrous to call run_until_complete()
        with the same coroutine twice -- it would wrap it in two
        different Tasks and that can't be good.
    
        Return the Future's result, or raise its exception.
        """
        self._check_closed()
        self._check_running()
    
        new_task = not futures.isfuture(future)
        future = tasks.ensure_future(future, loop=self)
        if new_task:
            # An exception is raised if the future didn't complete, so there
            # is no need to log the "destroy pending task" message
            future._log_destroy_pending = False
    
        future.add_done_callback(_run_until_complete_cb)
        try:
            self.run_forever()
        except:
            if new_task and future.done() and not future.cancelled():
                # The coroutine raised a BaseException. Consume the exception
                # to not log a warning, the caller doesn't have access to the
                # local task.
                future.exception()
            raise
        finally:
            future.remove_done_callback(_run_until_complete_cb)
        if not future.done():
>           raise RuntimeError('Event loop stopped before Future completed.')
E           RuntimeError: Event loop stopped before Future completed.

/usr/lib/python3.10/asyncio/base_events.py:647: RuntimeError
Captured log call
ERROR    asyncio:base_events.py:1758 Task exception was never retrieved
future: <Task finished name='__clock_loop' coro=<__clock_loop() done, defined at /usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py:135> exception=AttributeError("'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'")>
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py", line 143, in __clock_loop
    dut.Step(1)
  File "/home/UnityChipForXiangShan/dut/Tage_SC/__init__.py", line 1749, in Step
    self.xclock.Step(i)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 234, in XClock_Step
    XClock_Check_Exceptions(self)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 225, in XClock_Check_Exceptions
    raise self.exceptions[0]
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 160, in call
    return self.func(cycle, *self.args, **self.kwargs)
  File "/usr/local/lib/python3.10/dist-packages/toffee_test/request.py", line 30, in <lambda>
    return lambda _: cov_point.sample()
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 397, in sample
    hinted, onece = self.__check__(v)
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 329, in __check__
    checked = b(points["taget"])
  File "/home/UnityChipForXiangShan/ut_frontend/bpu/tagesc/test/checkpoints_tage_train.py", line 109, in update_always_taken
    always_taken = getattr(dut, f"io_update_bits_ftb_entry_always_taken_{way}").value != 0
AttributeError: 'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'. Did you mean: 'io_update_bits_ftb_entry_brSlots_0'?

Teardown

Captured log teardown
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

FAILED test_tage_alt_predict_keep_true_and_false 0:00:02.806818

Setup

Captured log setup
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

Call

[gw2] linux -- Python 3.10.12 /usr/bin/python3

self = 

    def runtest(self) -> None:
        self.obj = wrap_in_sync(
            # https://github.com/pytest-dev/pytest-asyncio/issues/596
            self.obj,  # type: ignore[has-type]
        )
>       super().runtest()

/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:457: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:929: in inner
    _loop.run_until_complete(task)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <_UnixSelectorEventLoop running=False closed=False debug=False>
future =  wait_for=>

    def run_until_complete(self, future):
        """Run until the Future is done.
    
        If the argument is a coroutine, it is wrapped in a Task.
    
        WARNING: It would be disastrous to call run_until_complete()
        with the same coroutine twice -- it would wrap it in two
        different Tasks and that can't be good.
    
        Return the Future's result, or raise its exception.
        """
        self._check_closed()
        self._check_running()
    
        new_task = not futures.isfuture(future)
        future = tasks.ensure_future(future, loop=self)
        if new_task:
            # An exception is raised if the future didn't complete, so there
            # is no need to log the "destroy pending task" message
            future._log_destroy_pending = False
    
        future.add_done_callback(_run_until_complete_cb)
        try:
            self.run_forever()
        except:
            if new_task and future.done() and not future.cancelled():
                # The coroutine raised a BaseException. Consume the exception
                # to not log a warning, the caller doesn't have access to the
                # local task.
                future.exception()
            raise
        finally:
            future.remove_done_callback(_run_until_complete_cb)
        if not future.done():
>           raise RuntimeError('Event loop stopped before Future completed.')
E           RuntimeError: Event loop stopped before Future completed.

/usr/lib/python3.10/asyncio/base_events.py:647: RuntimeError
Captured log call
ERROR    asyncio:base_events.py:1758 Task exception was never retrieved
future: <Task finished name='__clock_loop' coro=<__clock_loop() done, defined at /usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py:135> exception=AttributeError("'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'")>
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py", line 143, in __clock_loop
    dut.Step(1)
  File "/home/UnityChipForXiangShan/dut/Tage_SC/__init__.py", line 1749, in Step
    self.xclock.Step(i)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 234, in XClock_Step
    XClock_Check_Exceptions(self)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 225, in XClock_Check_Exceptions
    raise self.exceptions[0]
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 160, in call
    return self.func(cycle, *self.args, **self.kwargs)
  File "/usr/local/lib/python3.10/dist-packages/toffee_test/request.py", line 30, in <lambda>
    return lambda _: cov_point.sample()
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 397, in sample
    hinted, onece = self.__check__(v)
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 329, in __check__
    checked = b(points["taget"])
  File "/home/UnityChipForXiangShan/ut_frontend/bpu/tagesc/test/checkpoints_tage_train.py", line 109, in update_always_taken
    always_taken = getattr(dut, f"io_update_bits_ftb_entry_always_taken_{way}").value != 0
AttributeError: 'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'. Did you mean: 'io_update_bits_ftb_entry_brSlots_0'?

Teardown

Captured log teardown
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

FAILED test_sc_threshold_saturation_update 0:00:02.680750

Setup

Captured log setup
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

Call

[gw2] linux -- Python 3.10.12 /usr/bin/python3

self = 

    def runtest(self) -> None:
        self.obj = wrap_in_sync(
            # https://github.com/pytest-dev/pytest-asyncio/issues/596
            self.obj,  # type: ignore[has-type]
        )
>       super().runtest()

/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:457: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:929: in inner
    _loop.run_until_complete(task)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <_UnixSelectorEventLoop running=False closed=False debug=False>
future =  wait_for=>

    def run_until_complete(self, future):
        """Run until the Future is done.
    
        If the argument is a coroutine, it is wrapped in a Task.
    
        WARNING: It would be disastrous to call run_until_complete()
        with the same coroutine twice -- it would wrap it in two
        different Tasks and that can't be good.
    
        Return the Future's result, or raise its exception.
        """
        self._check_closed()
        self._check_running()
    
        new_task = not futures.isfuture(future)
        future = tasks.ensure_future(future, loop=self)
        if new_task:
            # An exception is raised if the future didn't complete, so there
            # is no need to log the "destroy pending task" message
            future._log_destroy_pending = False
    
        future.add_done_callback(_run_until_complete_cb)
        try:
            self.run_forever()
        except:
            if new_task and future.done() and not future.cancelled():
                # The coroutine raised a BaseException. Consume the exception
                # to not log a warning, the caller doesn't have access to the
                # local task.
                future.exception()
            raise
        finally:
            future.remove_done_callback(_run_until_complete_cb)
        if not future.done():
>           raise RuntimeError('Event loop stopped before Future completed.')
E           RuntimeError: Event loop stopped before Future completed.

/usr/lib/python3.10/asyncio/base_events.py:647: RuntimeError
Captured log call
ERROR    asyncio:base_events.py:1758 Task exception was never retrieved
future: <Task finished name='__clock_loop' coro=<__clock_loop() done, defined at /usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py:135> exception=AttributeError("'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'")>
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py", line 143, in __clock_loop
    dut.Step(1)
  File "/home/UnityChipForXiangShan/dut/Tage_SC/__init__.py", line 1749, in Step
    self.xclock.Step(i)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 234, in XClock_Step
    XClock_Check_Exceptions(self)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 225, in XClock_Check_Exceptions
    raise self.exceptions[0]
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 160, in call
    return self.func(cycle, *self.args, **self.kwargs)
  File "/usr/local/lib/python3.10/dist-packages/toffee_test/request.py", line 30, in <lambda>
    return lambda _: cov_point.sample()
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 397, in sample
    hinted, onece = self.__check__(v)
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 329, in __check__
    checked = b(points["taget"])
  File "/home/UnityChipForXiangShan/ut_frontend/bpu/tagesc/test/checkpoints_tage_train.py", line 109, in update_always_taken
    always_taken = getattr(dut, f"io_update_bits_ftb_entry_always_taken_{way}").value != 0
AttributeError: 'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'. Did you mean: 'io_update_bits_ftb_entry_brSlots_0'?

Teardown

Captured log teardown
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

FAILED test_tage_tn_saturing_ctr_update 0:00:02.659034

Setup

Captured log setup
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

Call

[gw3] linux -- Python 3.10.12 /usr/bin/python3

self = 

    def runtest(self) -> None:
        self.obj = wrap_in_sync(
            # https://github.com/pytest-dev/pytest-asyncio/issues/596
            self.obj,  # type: ignore[has-type]
        )
>       super().runtest()

/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:457: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:929: in inner
    _loop.run_until_complete(task)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <_UnixSelectorEventLoop running=False closed=False debug=False>
future =  wait_for=>

    def run_until_complete(self, future):
        """Run until the Future is done.
    
        If the argument is a coroutine, it is wrapped in a Task.
    
        WARNING: It would be disastrous to call run_until_complete()
        with the same coroutine twice -- it would wrap it in two
        different Tasks and that can't be good.
    
        Return the Future's result, or raise its exception.
        """
        self._check_closed()
        self._check_running()
    
        new_task = not futures.isfuture(future)
        future = tasks.ensure_future(future, loop=self)
        if new_task:
            # An exception is raised if the future didn't complete, so there
            # is no need to log the "destroy pending task" message
            future._log_destroy_pending = False
    
        future.add_done_callback(_run_until_complete_cb)
        try:
            self.run_forever()
        except:
            if new_task and future.done() and not future.cancelled():
                # The coroutine raised a BaseException. Consume the exception
                # to not log a warning, the caller doesn't have access to the
                # local task.
                future.exception()
            raise
        finally:
            future.remove_done_callback(_run_until_complete_cb)
        if not future.done():
>           raise RuntimeError('Event loop stopped before Future completed.')
E           RuntimeError: Event loop stopped before Future completed.

/usr/lib/python3.10/asyncio/base_events.py:647: RuntimeError
Captured log call
ERROR    asyncio:base_events.py:1758 Task exception was never retrieved
future: <Task finished name='__clock_loop' coro=<__clock_loop() done, defined at /usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py:135> exception=AttributeError("'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'")>
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py", line 143, in __clock_loop
    dut.Step(1)
  File "/home/UnityChipForXiangShan/dut/Tage_SC/__init__.py", line 1749, in Step
    self.xclock.Step(i)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 234, in XClock_Step
    XClock_Check_Exceptions(self)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 225, in XClock_Check_Exceptions
    raise self.exceptions[0]
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 160, in call
    return self.func(cycle, *self.args, **self.kwargs)
  File "/usr/local/lib/python3.10/dist-packages/toffee_test/request.py", line 30, in <lambda>
    return lambda _: cov_point.sample()
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 397, in sample
    hinted, onece = self.__check__(v)
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 329, in __check__
    checked = b(points["taget"])
  File "/home/UnityChipForXiangShan/ut_frontend/bpu/tagesc/test/checkpoints_tage_train.py", line 109, in update_always_taken
    always_taken = getattr(dut, f"io_update_bits_ftb_entry_always_taken_{way}").value != 0
AttributeError: 'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'. Did you mean: 'io_update_bits_ftb_entry_brSlots_0'?

Teardown

Captured log teardown
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

FAILED test_sc_table_saturation 0:00:02.664535

Setup

Captured log setup
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

Call

[gw2] linux -- Python 3.10.12 /usr/bin/python3

self = 

    def runtest(self) -> None:
        self.obj = wrap_in_sync(
            # https://github.com/pytest-dev/pytest-asyncio/issues/596
            self.obj,  # type: ignore[has-type]
        )
>       super().runtest()

/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:457: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:929: in inner
    _loop.run_until_complete(task)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <_UnixSelectorEventLoop running=False closed=False debug=False>
future =  wait_for=>

    def run_until_complete(self, future):
        """Run until the Future is done.
    
        If the argument is a coroutine, it is wrapped in a Task.
    
        WARNING: It would be disastrous to call run_until_complete()
        with the same coroutine twice -- it would wrap it in two
        different Tasks and that can't be good.
    
        Return the Future's result, or raise its exception.
        """
        self._check_closed()
        self._check_running()
    
        new_task = not futures.isfuture(future)
        future = tasks.ensure_future(future, loop=self)
        if new_task:
            # An exception is raised if the future didn't complete, so there
            # is no need to log the "destroy pending task" message
            future._log_destroy_pending = False
    
        future.add_done_callback(_run_until_complete_cb)
        try:
            self.run_forever()
        except:
            if new_task and future.done() and not future.cancelled():
                # The coroutine raised a BaseException. Consume the exception
                # to not log a warning, the caller doesn't have access to the
                # local task.
                future.exception()
            raise
        finally:
            future.remove_done_callback(_run_until_complete_cb)
        if not future.done():
>           raise RuntimeError('Event loop stopped before Future completed.')
E           RuntimeError: Event loop stopped before Future completed.

/usr/lib/python3.10/asyncio/base_events.py:647: RuntimeError
Captured log call
ERROR    asyncio:base_events.py:1758 Task exception was never retrieved
future: <Task finished name='__clock_loop' coro=<__clock_loop() done, defined at /usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py:135> exception=AttributeError("'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'")>
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py", line 143, in __clock_loop
    dut.Step(1)
  File "/home/UnityChipForXiangShan/dut/Tage_SC/__init__.py", line 1749, in Step
    self.xclock.Step(i)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 234, in XClock_Step
    XClock_Check_Exceptions(self)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 225, in XClock_Check_Exceptions
    raise self.exceptions[0]
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 160, in call
    return self.func(cycle, *self.args, **self.kwargs)
  File "/usr/local/lib/python3.10/dist-packages/toffee_test/request.py", line 30, in <lambda>
    return lambda _: cov_point.sample()
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 397, in sample
    hinted, onece = self.__check__(v)
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 329, in __check__
    checked = b(points["taget"])
  File "/home/UnityChipForXiangShan/ut_frontend/bpu/tagesc/test/checkpoints_tage_train.py", line 109, in update_always_taken
    always_taken = getattr(dut, f"io_update_bits_ftb_entry_always_taken_{way}").value != 0
AttributeError: 'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'. Did you mean: 'io_update_bits_ftb_entry_brSlots_0'?

Teardown

Captured log teardown
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

FAILED test_sc_total_sum_correctness 0:00:02.750307

Setup

Captured log setup
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

Call

[gw0] linux -- Python 3.10.12 /usr/bin/python3

self = 

    def runtest(self) -> None:
        self.obj = wrap_in_sync(
            # https://github.com/pytest-dev/pytest-asyncio/issues/596
            self.obj,  # type: ignore[has-type]
        )
>       super().runtest()

/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:457: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:929: in inner
    _loop.run_until_complete(task)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <_UnixSelectorEventLoop running=False closed=False debug=False>
future =  wait_for=>

    def run_until_complete(self, future):
        """Run until the Future is done.
    
        If the argument is a coroutine, it is wrapped in a Task.
    
        WARNING: It would be disastrous to call run_until_complete()
        with the same coroutine twice -- it would wrap it in two
        different Tasks and that can't be good.
    
        Return the Future's result, or raise its exception.
        """
        self._check_closed()
        self._check_running()
    
        new_task = not futures.isfuture(future)
        future = tasks.ensure_future(future, loop=self)
        if new_task:
            # An exception is raised if the future didn't complete, so there
            # is no need to log the "destroy pending task" message
            future._log_destroy_pending = False
    
        future.add_done_callback(_run_until_complete_cb)
        try:
            self.run_forever()
        except:
            if new_task and future.done() and not future.cancelled():
                # The coroutine raised a BaseException. Consume the exception
                # to not log a warning, the caller doesn't have access to the
                # local task.
                future.exception()
            raise
        finally:
            future.remove_done_callback(_run_until_complete_cb)
        if not future.done():
>           raise RuntimeError('Event loop stopped before Future completed.')
E           RuntimeError: Event loop stopped before Future completed.

/usr/lib/python3.10/asyncio/base_events.py:647: RuntimeError
Captured log call
ERROR    asyncio:base_events.py:1758 Task exception was never retrieved
future: <Task finished name='__clock_loop' coro=<__clock_loop() done, defined at /usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py:135> exception=AttributeError("'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'")>
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py", line 143, in __clock_loop
    dut.Step(1)
  File "/home/UnityChipForXiangShan/dut/Tage_SC/__init__.py", line 1749, in Step
    self.xclock.Step(i)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 234, in XClock_Step
    XClock_Check_Exceptions(self)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 225, in XClock_Check_Exceptions
    raise self.exceptions[0]
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 160, in call
    return self.func(cycle, *self.args, **self.kwargs)
  File "/usr/local/lib/python3.10/dist-packages/toffee_test/request.py", line 30, in <lambda>
    return lambda _: cov_point.sample()
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 397, in sample
    hinted, onece = self.__check__(v)
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 329, in __check__
    checked = b(points["taget"])
  File "/home/UnityChipForXiangShan/ut_frontend/bpu/tagesc/test/checkpoints_tage_train.py", line 109, in update_always_taken
    always_taken = getattr(dut, f"io_update_bits_ftb_entry_always_taken_{way}").value != 0
AttributeError: 'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'. Did you mean: 'io_update_bits_ftb_entry_brSlots_0'?

Teardown

Captured log teardown
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

FAILED test_update_when_predict 0:00:02.906595

Setup

Captured log setup
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

Call

[gw0] linux -- Python 3.10.12 /usr/bin/python3

self = 

    def runtest(self) -> None:
        self.obj = wrap_in_sync(
            # https://github.com/pytest-dev/pytest-asyncio/issues/596
            self.obj,  # type: ignore[has-type]
        )
>       super().runtest()

/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:457: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:929: in inner
    _loop.run_until_complete(task)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <_UnixSelectorEventLoop running=False closed=False debug=False>
future =  wait_for=>

    def run_until_complete(self, future):
        """Run until the Future is done.
    
        If the argument is a coroutine, it is wrapped in a Task.
    
        WARNING: It would be disastrous to call run_until_complete()
        with the same coroutine twice -- it would wrap it in two
        different Tasks and that can't be good.
    
        Return the Future's result, or raise its exception.
        """
        self._check_closed()
        self._check_running()
    
        new_task = not futures.isfuture(future)
        future = tasks.ensure_future(future, loop=self)
        if new_task:
            # An exception is raised if the future didn't complete, so there
            # is no need to log the "destroy pending task" message
            future._log_destroy_pending = False
    
        future.add_done_callback(_run_until_complete_cb)
        try:
            self.run_forever()
        except:
            if new_task and future.done() and not future.cancelled():
                # The coroutine raised a BaseException. Consume the exception
                # to not log a warning, the caller doesn't have access to the
                # local task.
                future.exception()
            raise
        finally:
            future.remove_done_callback(_run_until_complete_cb)
        if not future.done():
>           raise RuntimeError('Event loop stopped before Future completed.')
E           RuntimeError: Event loop stopped before Future completed.

/usr/lib/python3.10/asyncio/base_events.py:647: RuntimeError
Captured log call
ERROR    asyncio:base_events.py:1758 Task exception was never retrieved
future: <Task finished name='__clock_loop' coro=<__clock_loop() done, defined at /usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py:135> exception=AttributeError("'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'")>
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py", line 143, in __clock_loop
    dut.Step(1)
  File "/home/UnityChipForXiangShan/dut/Tage_SC/__init__.py", line 1749, in Step
    self.xclock.Step(i)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 234, in XClock_Step
    XClock_Check_Exceptions(self)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 225, in XClock_Check_Exceptions
    raise self.exceptions[0]
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 160, in call
    return self.func(cycle, *self.args, **self.kwargs)
  File "/usr/local/lib/python3.10/dist-packages/toffee_test/request.py", line 30, in <lambda>
    return lambda _: cov_point.sample()
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 397, in sample
    hinted, onece = self.__check__(v)
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 329, in __check__
    checked = b(points["taget"])
  File "/home/UnityChipForXiangShan/ut_frontend/bpu/tagesc/test/checkpoints_tage_train.py", line 109, in update_always_taken
    always_taken = getattr(dut, f"io_update_bits_ftb_entry_always_taken_{way}").value != 0
AttributeError: 'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'. Did you mean: 'io_update_bits_ftb_entry_brSlots_0'?

Teardown

Captured log teardown
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

FAILED test_always_taken 0:00:03.004884

Setup

Captured log setup
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

Call

[gw0] linux -- Python 3.10.12 /usr/bin/python3

self = 

    def runtest(self) -> None:
        self.obj = wrap_in_sync(
            # https://github.com/pytest-dev/pytest-asyncio/issues/596
            self.obj,  # type: ignore[has-type]
        )
>       super().runtest()

/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:457: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
/usr/local/lib/python3.10/dist-packages/pytest_asyncio/plugin.py:929: in inner
    _loop.run_until_complete(task)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <_UnixSelectorEventLoop running=False closed=False debug=False>
future =  wait_for=>

    def run_until_complete(self, future):
        """Run until the Future is done.
    
        If the argument is a coroutine, it is wrapped in a Task.
    
        WARNING: It would be disastrous to call run_until_complete()
        with the same coroutine twice -- it would wrap it in two
        different Tasks and that can't be good.
    
        Return the Future's result, or raise its exception.
        """
        self._check_closed()
        self._check_running()
    
        new_task = not futures.isfuture(future)
        future = tasks.ensure_future(future, loop=self)
        if new_task:
            # An exception is raised if the future didn't complete, so there
            # is no need to log the "destroy pending task" message
            future._log_destroy_pending = False
    
        future.add_done_callback(_run_until_complete_cb)
        try:
            self.run_forever()
        except:
            if new_task and future.done() and not future.cancelled():
                # The coroutine raised a BaseException. Consume the exception
                # to not log a warning, the caller doesn't have access to the
                # local task.
                future.exception()
            raise
        finally:
            future.remove_done_callback(_run_until_complete_cb)
        if not future.done():
>           raise RuntimeError('Event loop stopped before Future completed.')
E           RuntimeError: Event loop stopped before Future completed.

/usr/lib/python3.10/asyncio/base_events.py:647: RuntimeError
Captured log call
ERROR    asyncio:base_events.py:1758 Task exception was never retrieved
future: <Task finished name='__clock_loop' coro=<__clock_loop() done, defined at /usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py:135> exception=AttributeError("'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'")>
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py", line 143, in __clock_loop
    dut.Step(1)
  File "/home/UnityChipForXiangShan/dut/Tage_SC/__init__.py", line 1749, in Step
    self.xclock.Step(i)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 234, in XClock_Step
    XClock_Check_Exceptions(self)
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 225, in XClock_Check_Exceptions
    raise self.exceptions[0]
  File "/usr/local/share/picker/python/xspcomm/__init__.py", line 160, in call
    return self.func(cycle, *self.args, **self.kwargs)
  File "/usr/local/lib/python3.10/dist-packages/toffee_test/request.py", line 30, in <lambda>
    return lambda _: cov_point.sample()
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 397, in sample
    hinted, onece = self.__check__(v)
  File "/usr/local/lib/python3.10/dist-packages/toffee/funcov.py", line 329, in __check__
    checked = b(points["taget"])
  File "/home/UnityChipForXiangShan/ut_frontend/bpu/tagesc/test/checkpoints_tage_train.py", line 109, in update_always_taken
    always_taken = getattr(dut, f"io_update_bits_ftb_entry_always_taken_{way}").value != 0
AttributeError: 'DUTTage_SC' object has no attribute 'io_update_bits_ftb_entry_always_taken_0'. Did you mean: 'io_update_bits_ftb_entry_brSlots_0'?

Teardown

Captured log teardown
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

ut_frontend/ifu/pred_checker/test/test_demo.py 1 0:00:02.415490

PASSED test_fire 0:00:02.415490

Setup

Captured log setup
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "csrCtrl_singlestep" is not found in dut, it should satisfy rule "csrCtrl_singlestep"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_addr" is not found in dut, it should satisfy rule "fpRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_hold" is not found in dut, it should satisfy rule "fpRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_addr" is not found in dut, it should satisfy rule "fpRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_hold" is not found in dut, it should satisfy rule "fpRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_addr" is not found in dut, it should satisfy rule "fpRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_hold" is not found in dut, it should satisfy rule "fpRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_addr" is not found in dut, it should satisfy rule "fpRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_hold" is not found in dut, it should satisfy rule "fpRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_addr" is not found in dut, it should satisfy rule "fpRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_hold" is not found in dut, it should satisfy rule "fpRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_addr" is not found in dut, it should satisfy rule "fpRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_hold" is not found in dut, it should satisfy rule "fpRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_addr" is not found in dut, it should satisfy rule "fpRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_hold" is not found in dut, it should satisfy rule "fpRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_addr" is not found in dut, it should satisfy rule "fpRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_hold" is not found in dut, it should satisfy rule "fpRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_addr" is not found in dut, it should satisfy rule "fpRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_hold" is not found in dut, it should satisfy rule "fpRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_addr" is not found in dut, it should satisfy rule "fpRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_hold" is not found in dut, it should satisfy rule "fpRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_addr" is not found in dut, it should satisfy rule "fpRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_hold" is not found in dut, it should satisfy rule "fpRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_addr" is not found in dut, it should satisfy rule "fpRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_hold" is not found in dut, it should satisfy rule "fpRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_addr" is not found in dut, it should satisfy rule "fpRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_hold" is not found in dut, it should satisfy rule "fpRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_addr" is not found in dut, it should satisfy rule "fpRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_hold" is not found in dut, it should satisfy rule "fpRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_addr" is not found in dut, it should satisfy rule "fpRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_hold" is not found in dut, it should satisfy rule "fpRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_addr" is not found in dut, it should satisfy rule "fpRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_hold" is not found in dut, it should satisfy rule "fpRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_addr" is not found in dut, it should satisfy rule "fpRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_hold" is not found in dut, it should satisfy rule "fpRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_addr" is not found in dut, it should satisfy rule "fpRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_hold" is not found in dut, it should satisfy rule "fpRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboCF" is not found in dut, it should satisfy rule "fromCSR_illegalInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboI" is not found in dut, it should satisfy rule "fromCSR_illegalInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboZ" is not found in dut, it should satisfy rule "fromCSR_illegalInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_frm" is not found in dut, it should satisfy rule "fromCSR_illegalInst_frm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_fsIsOff" is not found in dut, it should satisfy rule "fromCSR_illegalInst_fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceGVMA" is not found in dut, it should satisfy rule "fromCSR_illegalInst_hfenceGVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceVVMA" is not found in dut, it should satisfy rule "fromCSR_illegalInst_hfenceVVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hlsv" is not found in dut, it should satisfy rule "fromCSR_illegalInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfencePart" is not found in dut, it should satisfy rule "fromCSR_illegalInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfenceVMA" is not found in dut, it should satisfy rule "fromCSR_illegalInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_vsIsOff" is not found in dut, it should satisfy rule "fromCSR_illegalInst_vsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_wfi" is not found in dut, it should satisfy rule "fromCSR_illegalInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_special_cboI2F" is not found in dut, it should satisfy rule "fromCSR_special_cboI2F"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboCF" is not found in dut, it should satisfy rule "fromCSR_virtualInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboI" is not found in dut, it should satisfy rule "fromCSR_virtualInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboZ" is not found in dut, it should satisfy rule "fromCSR_virtualInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hfence" is not found in dut, it should satisfy rule "fromCSR_virtualInst_hfence"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hlsv" is not found in dut, it should satisfy rule "fromCSR_virtualInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfencePart" is not found in dut, it should satisfy rule "fromCSR_virtualInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfenceVMA" is not found in dut, it should satisfy rule "fromCSR_virtualInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_wfi" is not found in dut, it should satisfy rule "fromCSR_virtualInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_hasVsetvl" is not found in dut, it should satisfy rule "fromRob_commitVType_hasVsetvl"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_illegal" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vlmul" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vma" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vsew" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vta" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_valid" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_isResumeVType" is not found in dut, it should satisfy rule "fromRob_isResumeVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkToArchVType" is not found in dut, it should satisfy rule "fromRob_walkToArchVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_illegal" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vlmul" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vma" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vsew" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vta" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_valid" is not found in dut, it should satisfy rule "fromRob_walkVType_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_0" is not found in dut, it should satisfy rule "fusion_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_1" is not found in dut, it should satisfy rule "fusion_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_2" is not found in dut, it should satisfy rule "fusion_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_3" is not found in dut, it should satisfy rule "fusion_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_4" is not found in dut, it should satisfy rule "fusion_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_foldpc" is not found in dut, it should satisfy rule "in_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqOffset" is not found in dut, it should satisfy rule "in_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_instr" is not found in dut, it should satisfy rule "in_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_0_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_pred_taken" is not found in dut, it should satisfy rule "in_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_trigger" is not found in dut, it should satisfy rule "in_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_ready" is not found in dut, it should satisfy rule "in_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_valid" is not found in dut, it should satisfy rule "in_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_foldpc" is not found in dut, it should satisfy rule "in_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqOffset" is not found in dut, it should satisfy rule "in_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_instr" is not found in dut, it should satisfy rule "in_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_1_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_pred_taken" is not found in dut, it should satisfy rule "in_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_trigger" is not found in dut, it should satisfy rule "in_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_ready" is not found in dut, it should satisfy rule "in_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_valid" is not found in dut, it should satisfy rule "in_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_foldpc" is not found in dut, it should satisfy rule "in_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqOffset" is not found in dut, it should satisfy rule "in_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_instr" is not found in dut, it should satisfy rule "in_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_2_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_pred_taken" is not found in dut, it should satisfy rule "in_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_trigger" is not found in dut, it should satisfy rule "in_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_ready" is not found in dut, it should satisfy rule "in_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_valid" is not found in dut, it should satisfy rule "in_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_foldpc" is not found in dut, it should satisfy rule "in_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqOffset" is not found in dut, it should satisfy rule "in_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_instr" is not found in dut, it should satisfy rule "in_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_3_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_pred_taken" is not found in dut, it should satisfy rule "in_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_trigger" is not found in dut, it should satisfy rule "in_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_ready" is not found in dut, it should satisfy rule "in_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_valid" is not found in dut, it should satisfy rule "in_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_foldpc" is not found in dut, it should satisfy rule "in_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqOffset" is not found in dut, it should satisfy rule "in_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_instr" is not found in dut, it should satisfy rule "in_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_4_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_pred_taken" is not found in dut, it should satisfy rule "in_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_trigger" is not found in dut, it should satisfy rule "in_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_ready" is not found in dut, it should satisfy rule "in_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_valid" is not found in dut, it should satisfy rule "in_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_foldpc" is not found in dut, it should satisfy rule "in_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqOffset" is not found in dut, it should satisfy rule "in_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_instr" is not found in dut, it should satisfy rule "in_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_5_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_pred_taken" is not found in dut, it should satisfy rule "in_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_trigger" is not found in dut, it should satisfy rule "in_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_ready" is not found in dut, it should satisfy rule "in_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_valid" is not found in dut, it should satisfy rule "in_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_addr" is not found in dut, it should satisfy rule "intRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_hold" is not found in dut, it should satisfy rule "intRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_addr" is not found in dut, it should satisfy rule "intRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_hold" is not found in dut, it should satisfy rule "intRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_addr" is not found in dut, it should satisfy rule "intRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_hold" is not found in dut, it should satisfy rule "intRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_addr" is not found in dut, it should satisfy rule "intRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_hold" is not found in dut, it should satisfy rule "intRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_addr" is not found in dut, it should satisfy rule "intRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_hold" is not found in dut, it should satisfy rule "intRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_addr" is not found in dut, it should satisfy rule "intRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_hold" is not found in dut, it should satisfy rule "intRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_addr" is not found in dut, it should satisfy rule "intRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_hold" is not found in dut, it should satisfy rule "intRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_addr" is not found in dut, it should satisfy rule "intRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_hold" is not found in dut, it should satisfy rule "intRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_addr" is not found in dut, it should satisfy rule "intRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_hold" is not found in dut, it should satisfy rule "intRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_addr" is not found in dut, it should satisfy rule "intRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_hold" is not found in dut, it should satisfy rule "intRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_addr" is not found in dut, it should satisfy rule "intRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_hold" is not found in dut, it should satisfy rule "intRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_addr" is not found in dut, it should satisfy rule "intRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_hold" is not found in dut, it should satisfy rule "intRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_blockBackward" is not found in dut, it should satisfy rule "out_0_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_canRobCompress" is not found in dut, it should satisfy rule "out_0_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_commitType" is not found in dut, it should satisfy rule "out_0_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_firstUop" is not found in dut, it should satisfy rule "out_0_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_flushPipe" is not found in dut, it should satisfy rule "out_0_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_foldpc" is not found in dut, it should satisfy rule "out_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpWen" is not found in dut, it should satisfy rule "out_0_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_rm" is not found in dut, it should satisfy rule "out_0_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typ" is not found in dut, it should satisfy rule "out_0_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_0_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_0_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqOffset" is not found in dut, it should satisfy rule "out_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuOpType" is not found in dut, it should satisfy rule "out_0_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuType" is not found in dut, it should satisfy rule "out_0_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_imm" is not found in dut, it should satisfy rule "out_0_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_instr" is not found in dut, it should satisfy rule "out_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isMove" is not found in dut, it should satisfy rule "out_0_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isVset" is not found in dut, it should satisfy rule "out_0_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isXSTrap" is not found in dut, it should satisfy rule "out_0_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lastUop" is not found in dut, it should satisfy rule "out_0_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ldest" is not found in dut, it should satisfy rule "out_0_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_0" is not found in dut, it should satisfy rule "out_0_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_1" is not found in dut, it should satisfy rule "out_0_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_2" is not found in dut, it should satisfy rule "out_0_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_numWB" is not found in dut, it should satisfy rule "out_0_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_pred_taken" is not found in dut, it should satisfy rule "out_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_rfWen" is not found in dut, it should satisfy rule "out_0_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_selImm" is not found in dut, it should satisfy rule "out_0_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_0" is not found in dut, it should satisfy rule "out_0_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_1" is not found in dut, it should satisfy rule "out_0_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_2" is not found in dut, it should satisfy rule "out_0_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_3" is not found in dut, it should satisfy rule "out_0_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_4" is not found in dut, it should satisfy rule "out_0_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_trigger" is not found in dut, it should satisfy rule "out_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopIdx" is not found in dut, it should satisfy rule "out_0_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopSplitType" is not found in dut, it should satisfy rule "out_0_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_v0Wen" is not found in dut, it should satisfy rule "out_0_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vecWen" is not found in dut, it should satisfy rule "out_0_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlWen" is not found in dut, it should satisfy rule "out_0_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlsInstr" is not found in dut, it should satisfy rule "out_0_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_0_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_0_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_0_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_0_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_0_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_0_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_0_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_0_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_0_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_0_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_nf" is not found in dut, it should satisfy rule "out_0_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_veew" is not found in dut, it should satisfy rule "out_0_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vill" is not found in dut, it should satisfy rule "out_0_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_0_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vm" is not found in dut, it should satisfy rule "out_0_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vma" is not found in dut, it should satisfy rule "out_0_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_0_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_0_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vta" is not found in dut, it should satisfy rule "out_0_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_waitForward" is not found in dut, it should satisfy rule "out_0_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_wfflags" is not found in dut, it should satisfy rule "out_0_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_ready" is not found in dut, it should satisfy rule "out_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_valid" is not found in dut, it should satisfy rule "out_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_blockBackward" is not found in dut, it should satisfy rule "out_1_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_canRobCompress" is not found in dut, it should satisfy rule "out_1_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_commitType" is not found in dut, it should satisfy rule "out_1_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_firstUop" is not found in dut, it should satisfy rule "out_1_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_flushPipe" is not found in dut, it should satisfy rule "out_1_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_foldpc" is not found in dut, it should satisfy rule "out_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpWen" is not found in dut, it should satisfy rule "out_1_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_rm" is not found in dut, it should satisfy rule "out_1_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typ" is not found in dut, it should satisfy rule "out_1_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_1_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_1_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqOffset" is not found in dut, it should satisfy rule "out_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuOpType" is not found in dut, it should satisfy rule "out_1_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuType" is not found in dut, it should satisfy rule "out_1_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_imm" is not found in dut, it should satisfy rule "out_1_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_instr" is not found in dut, it should satisfy rule "out_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isMove" is not found in dut, it should satisfy rule "out_1_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isVset" is not found in dut, it should satisfy rule "out_1_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isXSTrap" is not found in dut, it should satisfy rule "out_1_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lastUop" is not found in dut, it should satisfy rule "out_1_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ldest" is not found in dut, it should satisfy rule "out_1_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_0" is not found in dut, it should satisfy rule "out_1_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_1" is not found in dut, it should satisfy rule "out_1_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_2" is not found in dut, it should satisfy rule "out_1_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_numWB" is not found in dut, it should satisfy rule "out_1_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_pred_taken" is not found in dut, it should satisfy rule "out_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_rfWen" is not found in dut, it should satisfy rule "out_1_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_selImm" is not found in dut, it should satisfy rule "out_1_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_0" is not found in dut, it should satisfy rule "out_1_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_1" is not found in dut, it should satisfy rule "out_1_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_2" is not found in dut, it should satisfy rule "out_1_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_3" is not found in dut, it should satisfy rule "out_1_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_4" is not found in dut, it should satisfy rule "out_1_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_trigger" is not found in dut, it should satisfy rule "out_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopIdx" is not found in dut, it should satisfy rule "out_1_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopSplitType" is not found in dut, it should satisfy rule "out_1_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_v0Wen" is not found in dut, it should satisfy rule "out_1_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vecWen" is not found in dut, it should satisfy rule "out_1_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlWen" is not found in dut, it should satisfy rule "out_1_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlsInstr" is not found in dut, it should satisfy rule "out_1_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_1_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_1_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_1_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_1_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_1_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_1_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_1_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_1_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_1_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_1_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_nf" is not found in dut, it should satisfy rule "out_1_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_veew" is not found in dut, it should satisfy rule "out_1_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vill" is not found in dut, it should satisfy rule "out_1_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_1_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vm" is not found in dut, it should satisfy rule "out_1_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vma" is not found in dut, it should satisfy rule "out_1_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_1_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_1_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vta" is not found in dut, it should satisfy rule "out_1_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_waitForward" is not found in dut, it should satisfy rule "out_1_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_wfflags" is not found in dut, it should satisfy rule "out_1_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_ready" is not found in dut, it should satisfy rule "out_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_valid" is not found in dut, it should satisfy rule "out_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_blockBackward" is not found in dut, it should satisfy rule "out_2_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_canRobCompress" is not found in dut, it should satisfy rule "out_2_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_commitType" is not found in dut, it should satisfy rule "out_2_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_firstUop" is not found in dut, it should satisfy rule "out_2_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_flushPipe" is not found in dut, it should satisfy rule "out_2_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_foldpc" is not found in dut, it should satisfy rule "out_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpWen" is not found in dut, it should satisfy rule "out_2_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_rm" is not found in dut, it should satisfy rule "out_2_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typ" is not found in dut, it should satisfy rule "out_2_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_2_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_2_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqOffset" is not found in dut, it should satisfy rule "out_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuOpType" is not found in dut, it should satisfy rule "out_2_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuType" is not found in dut, it should satisfy rule "out_2_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_imm" is not found in dut, it should satisfy rule "out_2_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_instr" is not found in dut, it should satisfy rule "out_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isMove" is not found in dut, it should satisfy rule "out_2_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isVset" is not found in dut, it should satisfy rule "out_2_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isXSTrap" is not found in dut, it should satisfy rule "out_2_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lastUop" is not found in dut, it should satisfy rule "out_2_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ldest" is not found in dut, it should satisfy rule "out_2_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_0" is not found in dut, it should satisfy rule "out_2_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_1" is not found in dut, it should satisfy rule "out_2_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_2" is not found in dut, it should satisfy rule "out_2_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_numWB" is not found in dut, it should satisfy rule "out_2_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_pred_taken" is not found in dut, it should satisfy rule "out_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_rfWen" is not found in dut, it should satisfy rule "out_2_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_selImm" is not found in dut, it should satisfy rule "out_2_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_0" is not found in dut, it should satisfy rule "out_2_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_1" is not found in dut, it should satisfy rule "out_2_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_2" is not found in dut, it should satisfy rule "out_2_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_3" is not found in dut, it should satisfy rule "out_2_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_4" is not found in dut, it should satisfy rule "out_2_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_trigger" is not found in dut, it should satisfy rule "out_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopIdx" is not found in dut, it should satisfy rule "out_2_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopSplitType" is not found in dut, it should satisfy rule "out_2_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_v0Wen" is not found in dut, it should satisfy rule "out_2_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vecWen" is not found in dut, it should satisfy rule "out_2_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlWen" is not found in dut, it should satisfy rule "out_2_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlsInstr" is not found in dut, it should satisfy rule "out_2_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_2_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_2_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_2_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_2_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_2_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_2_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_2_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_2_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_2_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_2_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_nf" is not found in dut, it should satisfy rule "out_2_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_veew" is not found in dut, it should satisfy rule "out_2_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vill" is not found in dut, it should satisfy rule "out_2_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_2_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vm" is not found in dut, it should satisfy rule "out_2_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vma" is not found in dut, it should satisfy rule "out_2_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_2_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_2_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vta" is not found in dut, it should satisfy rule "out_2_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_waitForward" is not found in dut, it should satisfy rule "out_2_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_wfflags" is not found in dut, it should satisfy rule "out_2_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_ready" is not found in dut, it should satisfy rule "out_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_valid" is not found in dut, it should satisfy rule "out_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_blockBackward" is not found in dut, it should satisfy rule "out_3_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_canRobCompress" is not found in dut, it should satisfy rule "out_3_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_commitType" is not found in dut, it should satisfy rule "out_3_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_firstUop" is not found in dut, it should satisfy rule "out_3_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_flushPipe" is not found in dut, it should satisfy rule "out_3_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_foldpc" is not found in dut, it should satisfy rule "out_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpWen" is not found in dut, it should satisfy rule "out_3_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_rm" is not found in dut, it should satisfy rule "out_3_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typ" is not found in dut, it should satisfy rule "out_3_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_3_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_3_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqOffset" is not found in dut, it should satisfy rule "out_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuOpType" is not found in dut, it should satisfy rule "out_3_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuType" is not found in dut, it should satisfy rule "out_3_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_imm" is not found in dut, it should satisfy rule "out_3_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_instr" is not found in dut, it should satisfy rule "out_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isMove" is not found in dut, it should satisfy rule "out_3_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isVset" is not found in dut, it should satisfy rule "out_3_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isXSTrap" is not found in dut, it should satisfy rule "out_3_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lastUop" is not found in dut, it should satisfy rule "out_3_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ldest" is not found in dut, it should satisfy rule "out_3_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_0" is not found in dut, it should satisfy rule "out_3_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_1" is not found in dut, it should satisfy rule "out_3_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_2" is not found in dut, it should satisfy rule "out_3_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_numWB" is not found in dut, it should satisfy rule "out_3_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_pred_taken" is not found in dut, it should satisfy rule "out_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_rfWen" is not found in dut, it should satisfy rule "out_3_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_selImm" is not found in dut, it should satisfy rule "out_3_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_0" is not found in dut, it should satisfy rule "out_3_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_1" is not found in dut, it should satisfy rule "out_3_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_2" is not found in dut, it should satisfy rule "out_3_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_3" is not found in dut, it should satisfy rule "out_3_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_4" is not found in dut, it should satisfy rule "out_3_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_trigger" is not found in dut, it should satisfy rule "out_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopIdx" is not found in dut, it should satisfy rule "out_3_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopSplitType" is not found in dut, it should satisfy rule "out_3_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_v0Wen" is not found in dut, it should satisfy rule "out_3_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vecWen" is not found in dut, it should satisfy rule "out_3_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlWen" is not found in dut, it should satisfy rule "out_3_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlsInstr" is not found in dut, it should satisfy rule "out_3_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_3_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_3_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_3_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_3_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_3_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_3_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_3_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_3_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_3_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_3_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_nf" is not found in dut, it should satisfy rule "out_3_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_veew" is not found in dut, it should satisfy rule "out_3_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vill" is not found in dut, it should satisfy rule "out_3_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_3_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vm" is not found in dut, it should satisfy rule "out_3_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vma" is not found in dut, it should satisfy rule "out_3_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_3_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_3_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vta" is not found in dut, it should satisfy rule "out_3_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_waitForward" is not found in dut, it should satisfy rule "out_3_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_wfflags" is not found in dut, it should satisfy rule "out_3_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_ready" is not found in dut, it should satisfy rule "out_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_valid" is not found in dut, it should satisfy rule "out_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_blockBackward" is not found in dut, it should satisfy rule "out_4_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_canRobCompress" is not found in dut, it should satisfy rule "out_4_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_commitType" is not found in dut, it should satisfy rule "out_4_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_firstUop" is not found in dut, it should satisfy rule "out_4_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_flushPipe" is not found in dut, it should satisfy rule "out_4_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_foldpc" is not found in dut, it should satisfy rule "out_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpWen" is not found in dut, it should satisfy rule "out_4_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_rm" is not found in dut, it should satisfy rule "out_4_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typ" is not found in dut, it should satisfy rule "out_4_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_4_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_4_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqOffset" is not found in dut, it should satisfy rule "out_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuOpType" is not found in dut, it should satisfy rule "out_4_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuType" is not found in dut, it should satisfy rule "out_4_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_imm" is not found in dut, it should satisfy rule "out_4_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_instr" is not found in dut, it should satisfy rule "out_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isMove" is not found in dut, it should satisfy rule "out_4_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isVset" is not found in dut, it should satisfy rule "out_4_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isXSTrap" is not found in dut, it should satisfy rule "out_4_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lastUop" is not found in dut, it should satisfy rule "out_4_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ldest" is not found in dut, it should satisfy rule "out_4_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_0" is not found in dut, it should satisfy rule "out_4_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_1" is not found in dut, it should satisfy rule "out_4_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_2" is not found in dut, it should satisfy rule "out_4_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_numWB" is not found in dut, it should satisfy rule "out_4_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_pred_taken" is not found in dut, it should satisfy rule "out_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_rfWen" is not found in dut, it should satisfy rule "out_4_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_selImm" is not found in dut, it should satisfy rule "out_4_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_0" is not found in dut, it should satisfy rule "out_4_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_1" is not found in dut, it should satisfy rule "out_4_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_2" is not found in dut, it should satisfy rule "out_4_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_3" is not found in dut, it should satisfy rule "out_4_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_4" is not found in dut, it should satisfy rule "out_4_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_trigger" is not found in dut, it should satisfy rule "out_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopIdx" is not found in dut, it should satisfy rule "out_4_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopSplitType" is not found in dut, it should satisfy rule "out_4_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_v0Wen" is not found in dut, it should satisfy rule "out_4_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vecWen" is not found in dut, it should satisfy rule "out_4_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlWen" is not found in dut, it should satisfy rule "out_4_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlsInstr" is not found in dut, it should satisfy rule "out_4_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_4_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_4_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_4_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_4_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_4_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_4_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_4_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_4_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_4_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_4_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_nf" is not found in dut, it should satisfy rule "out_4_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_veew" is not found in dut, it should satisfy rule "out_4_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vill" is not found in dut, it should satisfy rule "out_4_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_4_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vm" is not found in dut, it should satisfy rule "out_4_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vma" is not found in dut, it should satisfy rule "out_4_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_4_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_4_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vta" is not found in dut, it should satisfy rule "out_4_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_waitForward" is not found in dut, it should satisfy rule "out_4_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_wfflags" is not found in dut, it should satisfy rule "out_4_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_ready" is not found in dut, it should satisfy rule "out_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_valid" is not found in dut, it should satisfy rule "out_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_blockBackward" is not found in dut, it should satisfy rule "out_5_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_canRobCompress" is not found in dut, it should satisfy rule "out_5_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_commitType" is not found in dut, it should satisfy rule "out_5_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_firstUop" is not found in dut, it should satisfy rule "out_5_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_flushPipe" is not found in dut, it should satisfy rule "out_5_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_foldpc" is not found in dut, it should satisfy rule "out_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpWen" is not found in dut, it should satisfy rule "out_5_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_rm" is not found in dut, it should satisfy rule "out_5_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typ" is not found in dut, it should satisfy rule "out_5_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_5_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_5_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqOffset" is not found in dut, it should satisfy rule "out_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuOpType" is not found in dut, it should satisfy rule "out_5_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuType" is not found in dut, it should satisfy rule "out_5_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_imm" is not found in dut, it should satisfy rule "out_5_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_instr" is not found in dut, it should satisfy rule "out_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isMove" is not found in dut, it should satisfy rule "out_5_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isVset" is not found in dut, it should satisfy rule "out_5_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isXSTrap" is not found in dut, it should satisfy rule "out_5_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lastUop" is not found in dut, it should satisfy rule "out_5_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ldest" is not found in dut, it should satisfy rule "out_5_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_0" is not found in dut, it should satisfy rule "out_5_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_1" is not found in dut, it should satisfy rule "out_5_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_2" is not found in dut, it should satisfy rule "out_5_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_numWB" is not found in dut, it should satisfy rule "out_5_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_pred_taken" is not found in dut, it should satisfy rule "out_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_rfWen" is not found in dut, it should satisfy rule "out_5_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_selImm" is not found in dut, it should satisfy rule "out_5_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_0" is not found in dut, it should satisfy rule "out_5_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_1" is not found in dut, it should satisfy rule "out_5_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_2" is not found in dut, it should satisfy rule "out_5_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_3" is not found in dut, it should satisfy rule "out_5_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_4" is not found in dut, it should satisfy rule "out_5_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_trigger" is not found in dut, it should satisfy rule "out_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopIdx" is not found in dut, it should satisfy rule "out_5_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopSplitType" is not found in dut, it should satisfy rule "out_5_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_v0Wen" is not found in dut, it should satisfy rule "out_5_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vecWen" is not found in dut, it should satisfy rule "out_5_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlWen" is not found in dut, it should satisfy rule "out_5_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlsInstr" is not found in dut, it should satisfy rule "out_5_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_5_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_5_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_5_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_5_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_5_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_5_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_5_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_5_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_5_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_5_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_nf" is not found in dut, it should satisfy rule "out_5_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_veew" is not found in dut, it should satisfy rule "out_5_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vill" is not found in dut, it should satisfy rule "out_5_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_5_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vm" is not found in dut, it should satisfy rule "out_5_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vma" is not found in dut, it should satisfy rule "out_5_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_5_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_5_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vta" is not found in dut, it should satisfy rule "out_5_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_waitForward" is not found in dut, it should satisfy rule "out_5_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_wfflags" is not found in dut, it should satisfy rule "out_5_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_ready" is not found in dut, it should satisfy rule "out_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_valid" is not found in dut, it should satisfy rule "out_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_0_value" is not found in dut, it should satisfy rule "perf_0_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_1_value" is not found in dut, it should satisfy rule "perf_1_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_2_value" is not found in dut, it should satisfy rule "perf_2_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_3_value" is not found in dut, it should satisfy rule "perf_3_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "redirect" is not found in dut, it should satisfy rule "redirect"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqOffset" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_value" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_instr" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_valid" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_addr" is not found in dut, it should satisfy rule "vecRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_hold" is not found in dut, it should satisfy rule "vecRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_addr" is not found in dut, it should satisfy rule "vecRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_hold" is not found in dut, it should satisfy rule "vecRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_addr" is not found in dut, it should satisfy rule "vecRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_hold" is not found in dut, it should satisfy rule "vecRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_addr" is not found in dut, it should satisfy rule "vecRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_hold" is not found in dut, it should satisfy rule "vecRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_addr" is not found in dut, it should satisfy rule "vecRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_hold" is not found in dut, it should satisfy rule "vecRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_addr" is not found in dut, it should satisfy rule "vecRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_hold" is not found in dut, it should satisfy rule "vecRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_addr" is not found in dut, it should satisfy rule "vecRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_hold" is not found in dut, it should satisfy rule "vecRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_addr" is not found in dut, it should satisfy rule "vecRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_hold" is not found in dut, it should satisfy rule "vecRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_addr" is not found in dut, it should satisfy rule "vecRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_hold" is not found in dut, it should satisfy rule "vecRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_addr" is not found in dut, it should satisfy rule "vecRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_hold" is not found in dut, it should satisfy rule "vecRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_addr" is not found in dut, it should satisfy rule "vecRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_hold" is not found in dut, it should satisfy rule "vecRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_addr" is not found in dut, it should satisfy rule "vecRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_hold" is not found in dut, it should satisfy rule "vecRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_addr" is not found in dut, it should satisfy rule "vecRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_hold" is not found in dut, it should satisfy rule "vecRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_addr" is not found in dut, it should satisfy rule "vecRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_hold" is not found in dut, it should satisfy rule "vecRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_addr" is not found in dut, it should satisfy rule "vecRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_hold" is not found in dut, it should satisfy rule "vecRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_addr" is not found in dut, it should satisfy rule "vecRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_hold" is not found in dut, it should satisfy rule "vecRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_addr" is not found in dut, it should satisfy rule "vecRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_hold" is not found in dut, it should satisfy rule "vecRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_addr" is not found in dut, it should satisfy rule "vecRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_hold" is not found in dut, it should satisfy rule "vecRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_illegal" is not found in dut, it should satisfy rule "vsetvlVType_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vlmul" is not found in dut, it should satisfy rule "vsetvlVType_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vma" is not found in dut, it should satisfy rule "vsetvlVType_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vsew" is not found in dut, it should satisfy rule "vsetvlVType_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vta" is not found in dut, it should satisfy rule "vsetvlVType_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vstart" is not found in dut, it should satisfy rule "vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "in"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "out_bits"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "csrCtrl_singlestep" is not found in dut, it should satisfy rule "csrCtrl_singlestep"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_addr" is not found in dut, it should satisfy rule "fpRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_hold" is not found in dut, it should satisfy rule "fpRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_addr" is not found in dut, it should satisfy rule "fpRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_hold" is not found in dut, it should satisfy rule "fpRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_addr" is not found in dut, it should satisfy rule "fpRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_hold" is not found in dut, it should satisfy rule "fpRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_addr" is not found in dut, it should satisfy rule "fpRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_hold" is not found in dut, it should satisfy rule "fpRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_addr" is not found in dut, it should satisfy rule "fpRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_hold" is not found in dut, it should satisfy rule "fpRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_addr" is not found in dut, it should satisfy rule "fpRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_hold" is not found in dut, it should satisfy rule "fpRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_addr" is not found in dut, it should satisfy rule "fpRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_hold" is not found in dut, it should satisfy rule "fpRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_addr" is not found in dut, it should satisfy rule "fpRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_hold" is not found in dut, it should satisfy rule "fpRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_addr" is not found in dut, it should satisfy rule "fpRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_hold" is not found in dut, it should satisfy rule "fpRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_addr" is not found in dut, it should satisfy rule "fpRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_hold" is not found in dut, it should satisfy rule "fpRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_addr" is not found in dut, it should satisfy rule "fpRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_hold" is not found in dut, it should satisfy rule "fpRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_addr" is not found in dut, it should satisfy rule "fpRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_hold" is not found in dut, it should satisfy rule "fpRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_addr" is not found in dut, it should satisfy rule "fpRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_hold" is not found in dut, it should satisfy rule "fpRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_addr" is not found in dut, it should satisfy rule "fpRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_hold" is not found in dut, it should satisfy rule "fpRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_addr" is not found in dut, it should satisfy rule "fpRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_hold" is not found in dut, it should satisfy rule "fpRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_addr" is not found in dut, it should satisfy rule "fpRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_hold" is not found in dut, it should satisfy rule "fpRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_addr" is not found in dut, it should satisfy rule "fpRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_hold" is not found in dut, it should satisfy rule "fpRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_addr" is not found in dut, it should satisfy rule "fpRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_hold" is not found in dut, it should satisfy rule "fpRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboCF" is not found in dut, it should satisfy rule "fromCSR_illegalInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboI" is not found in dut, it should satisfy rule "fromCSR_illegalInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboZ" is not found in dut, it should satisfy rule "fromCSR_illegalInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_frm" is not found in dut, it should satisfy rule "fromCSR_illegalInst_frm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_fsIsOff" is not found in dut, it should satisfy rule "fromCSR_illegalInst_fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceGVMA" is not found in dut, it should satisfy rule "fromCSR_illegalInst_hfenceGVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceVVMA" is not found in dut, it should satisfy rule "fromCSR_illegalInst_hfenceVVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hlsv" is not found in dut, it should satisfy rule "fromCSR_illegalInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfencePart" is not found in dut, it should satisfy rule "fromCSR_illegalInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfenceVMA" is not found in dut, it should satisfy rule "fromCSR_illegalInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_vsIsOff" is not found in dut, it should satisfy rule "fromCSR_illegalInst_vsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_wfi" is not found in dut, it should satisfy rule "fromCSR_illegalInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_special_cboI2F" is not found in dut, it should satisfy rule "fromCSR_special_cboI2F"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboCF" is not found in dut, it should satisfy rule "fromCSR_virtualInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboI" is not found in dut, it should satisfy rule "fromCSR_virtualInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboZ" is not found in dut, it should satisfy rule "fromCSR_virtualInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hfence" is not found in dut, it should satisfy rule "fromCSR_virtualInst_hfence"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hlsv" is not found in dut, it should satisfy rule "fromCSR_virtualInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfencePart" is not found in dut, it should satisfy rule "fromCSR_virtualInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfenceVMA" is not found in dut, it should satisfy rule "fromCSR_virtualInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_wfi" is not found in dut, it should satisfy rule "fromCSR_virtualInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_hasVsetvl" is not found in dut, it should satisfy rule "fromRob_commitVType_hasVsetvl"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_illegal" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vlmul" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vma" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vsew" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vta" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_valid" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_isResumeVType" is not found in dut, it should satisfy rule "fromRob_isResumeVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkToArchVType" is not found in dut, it should satisfy rule "fromRob_walkToArchVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_illegal" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vlmul" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vma" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vsew" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vta" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_valid" is not found in dut, it should satisfy rule "fromRob_walkVType_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_0" is not found in dut, it should satisfy rule "fusion_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_1" is not found in dut, it should satisfy rule "fusion_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_2" is not found in dut, it should satisfy rule "fusion_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_3" is not found in dut, it should satisfy rule "fusion_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_4" is not found in dut, it should satisfy rule "fusion_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_foldpc" is not found in dut, it should satisfy rule "in_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqOffset" is not found in dut, it should satisfy rule "in_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_instr" is not found in dut, it should satisfy rule "in_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_0_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_pred_taken" is not found in dut, it should satisfy rule "in_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_trigger" is not found in dut, it should satisfy rule "in_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_ready" is not found in dut, it should satisfy rule "in_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_valid" is not found in dut, it should satisfy rule "in_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_foldpc" is not found in dut, it should satisfy rule "in_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqOffset" is not found in dut, it should satisfy rule "in_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_instr" is not found in dut, it should satisfy rule "in_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_1_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_pred_taken" is not found in dut, it should satisfy rule "in_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_trigger" is not found in dut, it should satisfy rule "in_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_ready" is not found in dut, it should satisfy rule "in_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_valid" is not found in dut, it should satisfy rule "in_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_foldpc" is not found in dut, it should satisfy rule "in_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqOffset" is not found in dut, it should satisfy rule "in_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_instr" is not found in dut, it should satisfy rule "in_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_2_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_pred_taken" is not found in dut, it should satisfy rule "in_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_trigger" is not found in dut, it should satisfy rule "in_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_ready" is not found in dut, it should satisfy rule "in_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_valid" is not found in dut, it should satisfy rule "in_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_foldpc" is not found in dut, it should satisfy rule "in_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqOffset" is not found in dut, it should satisfy rule "in_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_instr" is not found in dut, it should satisfy rule "in_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_3_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_pred_taken" is not found in dut, it should satisfy rule "in_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_trigger" is not found in dut, it should satisfy rule "in_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_ready" is not found in dut, it should satisfy rule "in_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_valid" is not found in dut, it should satisfy rule "in_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_foldpc" is not found in dut, it should satisfy rule "in_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqOffset" is not found in dut, it should satisfy rule "in_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_instr" is not found in dut, it should satisfy rule "in_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_4_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_pred_taken" is not found in dut, it should satisfy rule "in_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_trigger" is not found in dut, it should satisfy rule "in_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_ready" is not found in dut, it should satisfy rule "in_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_valid" is not found in dut, it should satisfy rule "in_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_foldpc" is not found in dut, it should satisfy rule "in_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqOffset" is not found in dut, it should satisfy rule "in_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_instr" is not found in dut, it should satisfy rule "in_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_5_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_pred_taken" is not found in dut, it should satisfy rule "in_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_trigger" is not found in dut, it should satisfy rule "in_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_ready" is not found in dut, it should satisfy rule "in_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_valid" is not found in dut, it should satisfy rule "in_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_addr" is not found in dut, it should satisfy rule "intRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_hold" is not found in dut, it should satisfy rule "intRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_addr" is not found in dut, it should satisfy rule "intRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_hold" is not found in dut, it should satisfy rule "intRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_addr" is not found in dut, it should satisfy rule "intRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_hold" is not found in dut, it should satisfy rule "intRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_addr" is not found in dut, it should satisfy rule "intRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_hold" is not found in dut, it should satisfy rule "intRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_addr" is not found in dut, it should satisfy rule "intRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_hold" is not found in dut, it should satisfy rule "intRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_addr" is not found in dut, it should satisfy rule "intRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_hold" is not found in dut, it should satisfy rule "intRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_addr" is not found in dut, it should satisfy rule "intRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_hold" is not found in dut, it should satisfy rule "intRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_addr" is not found in dut, it should satisfy rule "intRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_hold" is not found in dut, it should satisfy rule "intRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_addr" is not found in dut, it should satisfy rule "intRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_hold" is not found in dut, it should satisfy rule "intRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_addr" is not found in dut, it should satisfy rule "intRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_hold" is not found in dut, it should satisfy rule "intRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_addr" is not found in dut, it should satisfy rule "intRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_hold" is not found in dut, it should satisfy rule "intRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_addr" is not found in dut, it should satisfy rule "intRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_hold" is not found in dut, it should satisfy rule "intRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_blockBackward" is not found in dut, it should satisfy rule "out_0_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_canRobCompress" is not found in dut, it should satisfy rule "out_0_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_commitType" is not found in dut, it should satisfy rule "out_0_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_firstUop" is not found in dut, it should satisfy rule "out_0_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_flushPipe" is not found in dut, it should satisfy rule "out_0_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_foldpc" is not found in dut, it should satisfy rule "out_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpWen" is not found in dut, it should satisfy rule "out_0_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_rm" is not found in dut, it should satisfy rule "out_0_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typ" is not found in dut, it should satisfy rule "out_0_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_0_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_0_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqOffset" is not found in dut, it should satisfy rule "out_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuOpType" is not found in dut, it should satisfy rule "out_0_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuType" is not found in dut, it should satisfy rule "out_0_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_imm" is not found in dut, it should satisfy rule "out_0_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_instr" is not found in dut, it should satisfy rule "out_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isMove" is not found in dut, it should satisfy rule "out_0_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isVset" is not found in dut, it should satisfy rule "out_0_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isXSTrap" is not found in dut, it should satisfy rule "out_0_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lastUop" is not found in dut, it should satisfy rule "out_0_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ldest" is not found in dut, it should satisfy rule "out_0_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_0" is not found in dut, it should satisfy rule "out_0_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_1" is not found in dut, it should satisfy rule "out_0_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_2" is not found in dut, it should satisfy rule "out_0_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_numWB" is not found in dut, it should satisfy rule "out_0_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_pred_taken" is not found in dut, it should satisfy rule "out_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_rfWen" is not found in dut, it should satisfy rule "out_0_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_selImm" is not found in dut, it should satisfy rule "out_0_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_0" is not found in dut, it should satisfy rule "out_0_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_1" is not found in dut, it should satisfy rule "out_0_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_2" is not found in dut, it should satisfy rule "out_0_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_3" is not found in dut, it should satisfy rule "out_0_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_4" is not found in dut, it should satisfy rule "out_0_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_trigger" is not found in dut, it should satisfy rule "out_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopIdx" is not found in dut, it should satisfy rule "out_0_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopSplitType" is not found in dut, it should satisfy rule "out_0_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_v0Wen" is not found in dut, it should satisfy rule "out_0_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vecWen" is not found in dut, it should satisfy rule "out_0_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlWen" is not found in dut, it should satisfy rule "out_0_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlsInstr" is not found in dut, it should satisfy rule "out_0_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_0_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_0_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_0_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_0_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_0_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_0_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_0_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_0_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_0_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_0_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_nf" is not found in dut, it should satisfy rule "out_0_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_veew" is not found in dut, it should satisfy rule "out_0_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vill" is not found in dut, it should satisfy rule "out_0_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_0_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vm" is not found in dut, it should satisfy rule "out_0_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vma" is not found in dut, it should satisfy rule "out_0_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_0_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_0_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vta" is not found in dut, it should satisfy rule "out_0_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_waitForward" is not found in dut, it should satisfy rule "out_0_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_wfflags" is not found in dut, it should satisfy rule "out_0_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_ready" is not found in dut, it should satisfy rule "out_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_valid" is not found in dut, it should satisfy rule "out_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_blockBackward" is not found in dut, it should satisfy rule "out_1_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_canRobCompress" is not found in dut, it should satisfy rule "out_1_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_commitType" is not found in dut, it should satisfy rule "out_1_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_firstUop" is not found in dut, it should satisfy rule "out_1_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_flushPipe" is not found in dut, it should satisfy rule "out_1_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_foldpc" is not found in dut, it should satisfy rule "out_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpWen" is not found in dut, it should satisfy rule "out_1_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_rm" is not found in dut, it should satisfy rule "out_1_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typ" is not found in dut, it should satisfy rule "out_1_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_1_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_1_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqOffset" is not found in dut, it should satisfy rule "out_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuOpType" is not found in dut, it should satisfy rule "out_1_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuType" is not found in dut, it should satisfy rule "out_1_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_imm" is not found in dut, it should satisfy rule "out_1_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_instr" is not found in dut, it should satisfy rule "out_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isMove" is not found in dut, it should satisfy rule "out_1_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isVset" is not found in dut, it should satisfy rule "out_1_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isXSTrap" is not found in dut, it should satisfy rule "out_1_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lastUop" is not found in dut, it should satisfy rule "out_1_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ldest" is not found in dut, it should satisfy rule "out_1_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_0" is not found in dut, it should satisfy rule "out_1_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_1" is not found in dut, it should satisfy rule "out_1_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_2" is not found in dut, it should satisfy rule "out_1_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_numWB" is not found in dut, it should satisfy rule "out_1_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_pred_taken" is not found in dut, it should satisfy rule "out_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_rfWen" is not found in dut, it should satisfy rule "out_1_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_selImm" is not found in dut, it should satisfy rule "out_1_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_0" is not found in dut, it should satisfy rule "out_1_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_1" is not found in dut, it should satisfy rule "out_1_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_2" is not found in dut, it should satisfy rule "out_1_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_3" is not found in dut, it should satisfy rule "out_1_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_4" is not found in dut, it should satisfy rule "out_1_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_trigger" is not found in dut, it should satisfy rule "out_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopIdx" is not found in dut, it should satisfy rule "out_1_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopSplitType" is not found in dut, it should satisfy rule "out_1_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_v0Wen" is not found in dut, it should satisfy rule "out_1_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vecWen" is not found in dut, it should satisfy rule "out_1_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlWen" is not found in dut, it should satisfy rule "out_1_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlsInstr" is not found in dut, it should satisfy rule "out_1_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_1_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_1_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_1_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_1_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_1_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_1_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_1_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_1_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_1_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_1_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_nf" is not found in dut, it should satisfy rule "out_1_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_veew" is not found in dut, it should satisfy rule "out_1_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vill" is not found in dut, it should satisfy rule "out_1_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_1_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vm" is not found in dut, it should satisfy rule "out_1_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vma" is not found in dut, it should satisfy rule "out_1_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_1_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_1_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vta" is not found in dut, it should satisfy rule "out_1_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_waitForward" is not found in dut, it should satisfy rule "out_1_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_wfflags" is not found in dut, it should satisfy rule "out_1_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_ready" is not found in dut, it should satisfy rule "out_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_valid" is not found in dut, it should satisfy rule "out_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_blockBackward" is not found in dut, it should satisfy rule "out_2_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_canRobCompress" is not found in dut, it should satisfy rule "out_2_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_commitType" is not found in dut, it should satisfy rule "out_2_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_firstUop" is not found in dut, it should satisfy rule "out_2_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_flushPipe" is not found in dut, it should satisfy rule "out_2_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_foldpc" is not found in dut, it should satisfy rule "out_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpWen" is not found in dut, it should satisfy rule "out_2_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_rm" is not found in dut, it should satisfy rule "out_2_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typ" is not found in dut, it should satisfy rule "out_2_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_2_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_2_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqOffset" is not found in dut, it should satisfy rule "out_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuOpType" is not found in dut, it should satisfy rule "out_2_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuType" is not found in dut, it should satisfy rule "out_2_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_imm" is not found in dut, it should satisfy rule "out_2_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_instr" is not found in dut, it should satisfy rule "out_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isMove" is not found in dut, it should satisfy rule "out_2_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isVset" is not found in dut, it should satisfy rule "out_2_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isXSTrap" is not found in dut, it should satisfy rule "out_2_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lastUop" is not found in dut, it should satisfy rule "out_2_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ldest" is not found in dut, it should satisfy rule "out_2_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_0" is not found in dut, it should satisfy rule "out_2_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_1" is not found in dut, it should satisfy rule "out_2_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_2" is not found in dut, it should satisfy rule "out_2_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_numWB" is not found in dut, it should satisfy rule "out_2_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_pred_taken" is not found in dut, it should satisfy rule "out_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_rfWen" is not found in dut, it should satisfy rule "out_2_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_selImm" is not found in dut, it should satisfy rule "out_2_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_0" is not found in dut, it should satisfy rule "out_2_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_1" is not found in dut, it should satisfy rule "out_2_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_2" is not found in dut, it should satisfy rule "out_2_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_3" is not found in dut, it should satisfy rule "out_2_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_4" is not found in dut, it should satisfy rule "out_2_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_trigger" is not found in dut, it should satisfy rule "out_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopIdx" is not found in dut, it should satisfy rule "out_2_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopSplitType" is not found in dut, it should satisfy rule "out_2_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_v0Wen" is not found in dut, it should satisfy rule "out_2_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vecWen" is not found in dut, it should satisfy rule "out_2_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlWen" is not found in dut, it should satisfy rule "out_2_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlsInstr" is not found in dut, it should satisfy rule "out_2_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_2_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_2_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_2_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_2_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_2_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_2_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_2_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_2_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_2_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_2_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_nf" is not found in dut, it should satisfy rule "out_2_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_veew" is not found in dut, it should satisfy rule "out_2_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vill" is not found in dut, it should satisfy rule "out_2_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_2_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vm" is not found in dut, it should satisfy rule "out_2_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vma" is not found in dut, it should satisfy rule "out_2_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_2_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_2_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vta" is not found in dut, it should satisfy rule "out_2_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_waitForward" is not found in dut, it should satisfy rule "out_2_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_wfflags" is not found in dut, it should satisfy rule "out_2_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_ready" is not found in dut, it should satisfy rule "out_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_valid" is not found in dut, it should satisfy rule "out_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_blockBackward" is not found in dut, it should satisfy rule "out_3_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_canRobCompress" is not found in dut, it should satisfy rule "out_3_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_commitType" is not found in dut, it should satisfy rule "out_3_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_firstUop" is not found in dut, it should satisfy rule "out_3_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_flushPipe" is not found in dut, it should satisfy rule "out_3_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_foldpc" is not found in dut, it should satisfy rule "out_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpWen" is not found in dut, it should satisfy rule "out_3_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_rm" is not found in dut, it should satisfy rule "out_3_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typ" is not found in dut, it should satisfy rule "out_3_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_3_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_3_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqOffset" is not found in dut, it should satisfy rule "out_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuOpType" is not found in dut, it should satisfy rule "out_3_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuType" is not found in dut, it should satisfy rule "out_3_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_imm" is not found in dut, it should satisfy rule "out_3_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_instr" is not found in dut, it should satisfy rule "out_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isMove" is not found in dut, it should satisfy rule "out_3_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isVset" is not found in dut, it should satisfy rule "out_3_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isXSTrap" is not found in dut, it should satisfy rule "out_3_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lastUop" is not found in dut, it should satisfy rule "out_3_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ldest" is not found in dut, it should satisfy rule "out_3_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_0" is not found in dut, it should satisfy rule "out_3_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_1" is not found in dut, it should satisfy rule "out_3_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_2" is not found in dut, it should satisfy rule "out_3_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_numWB" is not found in dut, it should satisfy rule "out_3_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_pred_taken" is not found in dut, it should satisfy rule "out_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_rfWen" is not found in dut, it should satisfy rule "out_3_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_selImm" is not found in dut, it should satisfy rule "out_3_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_0" is not found in dut, it should satisfy rule "out_3_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_1" is not found in dut, it should satisfy rule "out_3_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_2" is not found in dut, it should satisfy rule "out_3_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_3" is not found in dut, it should satisfy rule "out_3_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_4" is not found in dut, it should satisfy rule "out_3_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_trigger" is not found in dut, it should satisfy rule "out_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopIdx" is not found in dut, it should satisfy rule "out_3_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopSplitType" is not found in dut, it should satisfy rule "out_3_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_v0Wen" is not found in dut, it should satisfy rule "out_3_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vecWen" is not found in dut, it should satisfy rule "out_3_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlWen" is not found in dut, it should satisfy rule "out_3_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlsInstr" is not found in dut, it should satisfy rule "out_3_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_3_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_3_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_3_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_3_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_3_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_3_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_3_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_3_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_3_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_3_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_nf" is not found in dut, it should satisfy rule "out_3_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_veew" is not found in dut, it should satisfy rule "out_3_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vill" is not found in dut, it should satisfy rule "out_3_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_3_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vm" is not found in dut, it should satisfy rule "out_3_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vma" is not found in dut, it should satisfy rule "out_3_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_3_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_3_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vta" is not found in dut, it should satisfy rule "out_3_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_waitForward" is not found in dut, it should satisfy rule "out_3_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_wfflags" is not found in dut, it should satisfy rule "out_3_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_ready" is not found in dut, it should satisfy rule "out_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_valid" is not found in dut, it should satisfy rule "out_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_blockBackward" is not found in dut, it should satisfy rule "out_4_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_canRobCompress" is not found in dut, it should satisfy rule "out_4_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_commitType" is not found in dut, it should satisfy rule "out_4_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_firstUop" is not found in dut, it should satisfy rule "out_4_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_flushPipe" is not found in dut, it should satisfy rule "out_4_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_foldpc" is not found in dut, it should satisfy rule "out_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpWen" is not found in dut, it should satisfy rule "out_4_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_rm" is not found in dut, it should satisfy rule "out_4_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typ" is not found in dut, it should satisfy rule "out_4_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_4_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_4_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqOffset" is not found in dut, it should satisfy rule "out_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuOpType" is not found in dut, it should satisfy rule "out_4_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuType" is not found in dut, it should satisfy rule "out_4_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_imm" is not found in dut, it should satisfy rule "out_4_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_instr" is not found in dut, it should satisfy rule "out_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isMove" is not found in dut, it should satisfy rule "out_4_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isVset" is not found in dut, it should satisfy rule "out_4_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isXSTrap" is not found in dut, it should satisfy rule "out_4_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lastUop" is not found in dut, it should satisfy rule "out_4_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ldest" is not found in dut, it should satisfy rule "out_4_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_0" is not found in dut, it should satisfy rule "out_4_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_1" is not found in dut, it should satisfy rule "out_4_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_2" is not found in dut, it should satisfy rule "out_4_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_numWB" is not found in dut, it should satisfy rule "out_4_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_pred_taken" is not found in dut, it should satisfy rule "out_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_rfWen" is not found in dut, it should satisfy rule "out_4_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_selImm" is not found in dut, it should satisfy rule "out_4_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_0" is not found in dut, it should satisfy rule "out_4_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_1" is not found in dut, it should satisfy rule "out_4_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_2" is not found in dut, it should satisfy rule "out_4_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_3" is not found in dut, it should satisfy rule "out_4_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_4" is not found in dut, it should satisfy rule "out_4_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_trigger" is not found in dut, it should satisfy rule "out_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopIdx" is not found in dut, it should satisfy rule "out_4_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopSplitType" is not found in dut, it should satisfy rule "out_4_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_v0Wen" is not found in dut, it should satisfy rule "out_4_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vecWen" is not found in dut, it should satisfy rule "out_4_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlWen" is not found in dut, it should satisfy rule "out_4_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlsInstr" is not found in dut, it should satisfy rule "out_4_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_4_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_4_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_4_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_4_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_4_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_4_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_4_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_4_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_4_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_4_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_nf" is not found in dut, it should satisfy rule "out_4_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_veew" is not found in dut, it should satisfy rule "out_4_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vill" is not found in dut, it should satisfy rule "out_4_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_4_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vm" is not found in dut, it should satisfy rule "out_4_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vma" is not found in dut, it should satisfy rule "out_4_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_4_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_4_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vta" is not found in dut, it should satisfy rule "out_4_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_waitForward" is not found in dut, it should satisfy rule "out_4_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_wfflags" is not found in dut, it should satisfy rule "out_4_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_ready" is not found in dut, it should satisfy rule "out_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_valid" is not found in dut, it should satisfy rule "out_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_blockBackward" is not found in dut, it should satisfy rule "out_5_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_canRobCompress" is not found in dut, it should satisfy rule "out_5_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_commitType" is not found in dut, it should satisfy rule "out_5_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_firstUop" is not found in dut, it should satisfy rule "out_5_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_flushPipe" is not found in dut, it should satisfy rule "out_5_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_foldpc" is not found in dut, it should satisfy rule "out_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpWen" is not found in dut, it should satisfy rule "out_5_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_rm" is not found in dut, it should satisfy rule "out_5_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typ" is not found in dut, it should satisfy rule "out_5_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_5_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_5_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqOffset" is not found in dut, it should satisfy rule "out_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuOpType" is not found in dut, it should satisfy rule "out_5_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuType" is not found in dut, it should satisfy rule "out_5_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_imm" is not found in dut, it should satisfy rule "out_5_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_instr" is not found in dut, it should satisfy rule "out_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isMove" is not found in dut, it should satisfy rule "out_5_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isVset" is not found in dut, it should satisfy rule "out_5_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isXSTrap" is not found in dut, it should satisfy rule "out_5_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lastUop" is not found in dut, it should satisfy rule "out_5_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ldest" is not found in dut, it should satisfy rule "out_5_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_0" is not found in dut, it should satisfy rule "out_5_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_1" is not found in dut, it should satisfy rule "out_5_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_2" is not found in dut, it should satisfy rule "out_5_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_numWB" is not found in dut, it should satisfy rule "out_5_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_pred_taken" is not found in dut, it should satisfy rule "out_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_rfWen" is not found in dut, it should satisfy rule "out_5_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_selImm" is not found in dut, it should satisfy rule "out_5_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_0" is not found in dut, it should satisfy rule "out_5_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_1" is not found in dut, it should satisfy rule "out_5_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_2" is not found in dut, it should satisfy rule "out_5_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_3" is not found in dut, it should satisfy rule "out_5_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_4" is not found in dut, it should satisfy rule "out_5_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_trigger" is not found in dut, it should satisfy rule "out_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopIdx" is not found in dut, it should satisfy rule "out_5_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopSplitType" is not found in dut, it should satisfy rule "out_5_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_v0Wen" is not found in dut, it should satisfy rule "out_5_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vecWen" is not found in dut, it should satisfy rule "out_5_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlWen" is not found in dut, it should satisfy rule "out_5_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlsInstr" is not found in dut, it should satisfy rule "out_5_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_5_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_5_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_5_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_5_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_5_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_5_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_5_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_5_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_5_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_5_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_nf" is not found in dut, it should satisfy rule "out_5_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_veew" is not found in dut, it should satisfy rule "out_5_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vill" is not found in dut, it should satisfy rule "out_5_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_5_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vm" is not found in dut, it should satisfy rule "out_5_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vma" is not found in dut, it should satisfy rule "out_5_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_5_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_5_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vta" is not found in dut, it should satisfy rule "out_5_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_waitForward" is not found in dut, it should satisfy rule "out_5_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_wfflags" is not found in dut, it should satisfy rule "out_5_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_ready" is not found in dut, it should satisfy rule "out_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_valid" is not found in dut, it should satisfy rule "out_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_0_value" is not found in dut, it should satisfy rule "perf_0_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_1_value" is not found in dut, it should satisfy rule "perf_1_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_2_value" is not found in dut, it should satisfy rule "perf_2_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_3_value" is not found in dut, it should satisfy rule "perf_3_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "redirect" is not found in dut, it should satisfy rule "redirect"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqOffset" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_value" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_instr" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_valid" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_addr" is not found in dut, it should satisfy rule "vecRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_hold" is not found in dut, it should satisfy rule "vecRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_addr" is not found in dut, it should satisfy rule "vecRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_hold" is not found in dut, it should satisfy rule "vecRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_addr" is not found in dut, it should satisfy rule "vecRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_hold" is not found in dut, it should satisfy rule "vecRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_addr" is not found in dut, it should satisfy rule "vecRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_hold" is not found in dut, it should satisfy rule "vecRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_addr" is not found in dut, it should satisfy rule "vecRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_hold" is not found in dut, it should satisfy rule "vecRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_addr" is not found in dut, it should satisfy rule "vecRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_hold" is not found in dut, it should satisfy rule "vecRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_addr" is not found in dut, it should satisfy rule "vecRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_hold" is not found in dut, it should satisfy rule "vecRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_addr" is not found in dut, it should satisfy rule "vecRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_hold" is not found in dut, it should satisfy rule "vecRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_addr" is not found in dut, it should satisfy rule "vecRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_hold" is not found in dut, it should satisfy rule "vecRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_addr" is not found in dut, it should satisfy rule "vecRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_hold" is not found in dut, it should satisfy rule "vecRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_addr" is not found in dut, it should satisfy rule "vecRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_hold" is not found in dut, it should satisfy rule "vecRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_addr" is not found in dut, it should satisfy rule "vecRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_hold" is not found in dut, it should satisfy rule "vecRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_addr" is not found in dut, it should satisfy rule "vecRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_hold" is not found in dut, it should satisfy rule "vecRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_addr" is not found in dut, it should satisfy rule "vecRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_hold" is not found in dut, it should satisfy rule "vecRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_addr" is not found in dut, it should satisfy rule "vecRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_hold" is not found in dut, it should satisfy rule "vecRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_addr" is not found in dut, it should satisfy rule "vecRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_hold" is not found in dut, it should satisfy rule "vecRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_addr" is not found in dut, it should satisfy rule "vecRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_hold" is not found in dut, it should satisfy rule "vecRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_addr" is not found in dut, it should satisfy rule "vecRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_hold" is not found in dut, it should satisfy rule "vecRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_illegal" is not found in dut, it should satisfy rule "vsetvlVType_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vlmul" is not found in dut, it should satisfy rule "vsetvlVType_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vma" is not found in dut, it should satisfy rule "vsetvlVType_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vsew" is not found in dut, it should satisfy rule "vsetvlVType_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vta" is not found in dut, it should satisfy rule "vsetvlVType_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vstart" is not found in dut, it should satisfy rule "vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "in"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "out_bits"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "csrCtrl_singlestep" is not found in dut, it should satisfy rule "csrCtrl_singlestep"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_addr" is not found in dut, it should satisfy rule "fpRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_hold" is not found in dut, it should satisfy rule "fpRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_addr" is not found in dut, it should satisfy rule "fpRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_hold" is not found in dut, it should satisfy rule "fpRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_addr" is not found in dut, it should satisfy rule "fpRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_hold" is not found in dut, it should satisfy rule "fpRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_addr" is not found in dut, it should satisfy rule "fpRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_hold" is not found in dut, it should satisfy rule "fpRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_addr" is not found in dut, it should satisfy rule "fpRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_hold" is not found in dut, it should satisfy rule "fpRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_addr" is not found in dut, it should satisfy rule "fpRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_hold" is not found in dut, it should satisfy rule "fpRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_addr" is not found in dut, it should satisfy rule "fpRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_hold" is not found in dut, it should satisfy rule "fpRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_addr" is not found in dut, it should satisfy rule "fpRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_hold" is not found in dut, it should satisfy rule "fpRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_addr" is not found in dut, it should satisfy rule "fpRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_hold" is not found in dut, it should satisfy rule "fpRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_addr" is not found in dut, it should satisfy rule "fpRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_hold" is not found in dut, it should satisfy rule "fpRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_addr" is not found in dut, it should satisfy rule "fpRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_hold" is not found in dut, it should satisfy rule "fpRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_addr" is not found in dut, it should satisfy rule "fpRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_hold" is not found in dut, it should satisfy rule "fpRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_addr" is not found in dut, it should satisfy rule "fpRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_hold" is not found in dut, it should satisfy rule "fpRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_addr" is not found in dut, it should satisfy rule "fpRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_hold" is not found in dut, it should satisfy rule "fpRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_addr" is not found in dut, it should satisfy rule "fpRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_hold" is not found in dut, it should satisfy rule "fpRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_addr" is not found in dut, it should satisfy rule "fpRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_hold" is not found in dut, it should satisfy rule "fpRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_addr" is not found in dut, it should satisfy rule "fpRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_hold" is not found in dut, it should satisfy rule "fpRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_addr" is not found in dut, it should satisfy rule "fpRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_hold" is not found in dut, it should satisfy rule "fpRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboCF" is not found in dut, it should satisfy rule "fromCSR_illegalInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboI" is not found in dut, it should satisfy rule "fromCSR_illegalInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboZ" is not found in dut, it should satisfy rule "fromCSR_illegalInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_frm" is not found in dut, it should satisfy rule "fromCSR_illegalInst_frm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_fsIsOff" is not found in dut, it should satisfy rule "fromCSR_illegalInst_fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceGVMA" is not found in dut, it should satisfy rule "fromCSR_illegalInst_hfenceGVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceVVMA" is not found in dut, it should satisfy rule "fromCSR_illegalInst_hfenceVVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hlsv" is not found in dut, it should satisfy rule "fromCSR_illegalInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfencePart" is not found in dut, it should satisfy rule "fromCSR_illegalInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfenceVMA" is not found in dut, it should satisfy rule "fromCSR_illegalInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_vsIsOff" is not found in dut, it should satisfy rule "fromCSR_illegalInst_vsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_wfi" is not found in dut, it should satisfy rule "fromCSR_illegalInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_special_cboI2F" is not found in dut, it should satisfy rule "fromCSR_special_cboI2F"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboCF" is not found in dut, it should satisfy rule "fromCSR_virtualInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboI" is not found in dut, it should satisfy rule "fromCSR_virtualInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboZ" is not found in dut, it should satisfy rule "fromCSR_virtualInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hfence" is not found in dut, it should satisfy rule "fromCSR_virtualInst_hfence"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hlsv" is not found in dut, it should satisfy rule "fromCSR_virtualInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfencePart" is not found in dut, it should satisfy rule "fromCSR_virtualInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfenceVMA" is not found in dut, it should satisfy rule "fromCSR_virtualInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_wfi" is not found in dut, it should satisfy rule "fromCSR_virtualInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_hasVsetvl" is not found in dut, it should satisfy rule "fromRob_commitVType_hasVsetvl"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_illegal" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vlmul" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vma" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vsew" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vta" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_valid" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_isResumeVType" is not found in dut, it should satisfy rule "fromRob_isResumeVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkToArchVType" is not found in dut, it should satisfy rule "fromRob_walkToArchVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_illegal" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vlmul" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vma" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vsew" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vta" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_valid" is not found in dut, it should satisfy rule "fromRob_walkVType_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_0" is not found in dut, it should satisfy rule "fusion_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_1" is not found in dut, it should satisfy rule "fusion_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_2" is not found in dut, it should satisfy rule "fusion_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_3" is not found in dut, it should satisfy rule "fusion_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_4" is not found in dut, it should satisfy rule "fusion_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_foldpc" is not found in dut, it should satisfy rule "in_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqOffset" is not found in dut, it should satisfy rule "in_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_instr" is not found in dut, it should satisfy rule "in_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_0_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_pred_taken" is not found in dut, it should satisfy rule "in_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_trigger" is not found in dut, it should satisfy rule "in_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_ready" is not found in dut, it should satisfy rule "in_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_valid" is not found in dut, it should satisfy rule "in_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_foldpc" is not found in dut, it should satisfy rule "in_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqOffset" is not found in dut, it should satisfy rule "in_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_instr" is not found in dut, it should satisfy rule "in_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_1_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_pred_taken" is not found in dut, it should satisfy rule "in_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_trigger" is not found in dut, it should satisfy rule "in_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_ready" is not found in dut, it should satisfy rule "in_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_valid" is not found in dut, it should satisfy rule "in_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_foldpc" is not found in dut, it should satisfy rule "in_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqOffset" is not found in dut, it should satisfy rule "in_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_instr" is not found in dut, it should satisfy rule "in_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_2_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_pred_taken" is not found in dut, it should satisfy rule "in_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_trigger" is not found in dut, it should satisfy rule "in_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_ready" is not found in dut, it should satisfy rule "in_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_valid" is not found in dut, it should satisfy rule "in_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_foldpc" is not found in dut, it should satisfy rule "in_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqOffset" is not found in dut, it should satisfy rule "in_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_instr" is not found in dut, it should satisfy rule "in_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_3_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_pred_taken" is not found in dut, it should satisfy rule "in_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_trigger" is not found in dut, it should satisfy rule "in_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_ready" is not found in dut, it should satisfy rule "in_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_valid" is not found in dut, it should satisfy rule "in_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_foldpc" is not found in dut, it should satisfy rule "in_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqOffset" is not found in dut, it should satisfy rule "in_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_instr" is not found in dut, it should satisfy rule "in_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_4_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_pred_taken" is not found in dut, it should satisfy rule "in_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_trigger" is not found in dut, it should satisfy rule "in_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_ready" is not found in dut, it should satisfy rule "in_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_valid" is not found in dut, it should satisfy rule "in_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_foldpc" is not found in dut, it should satisfy rule "in_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqOffset" is not found in dut, it should satisfy rule "in_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_instr" is not found in dut, it should satisfy rule "in_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_5_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_pred_taken" is not found in dut, it should satisfy rule "in_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_trigger" is not found in dut, it should satisfy rule "in_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_ready" is not found in dut, it should satisfy rule "in_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_valid" is not found in dut, it should satisfy rule "in_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_addr" is not found in dut, it should satisfy rule "intRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_hold" is not found in dut, it should satisfy rule "intRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_addr" is not found in dut, it should satisfy rule "intRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_hold" is not found in dut, it should satisfy rule "intRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_addr" is not found in dut, it should satisfy rule "intRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_hold" is not found in dut, it should satisfy rule "intRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_addr" is not found in dut, it should satisfy rule "intRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_hold" is not found in dut, it should satisfy rule "intRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_addr" is not found in dut, it should satisfy rule "intRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_hold" is not found in dut, it should satisfy rule "intRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_addr" is not found in dut, it should satisfy rule "intRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_hold" is not found in dut, it should satisfy rule "intRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_addr" is not found in dut, it should satisfy rule "intRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_hold" is not found in dut, it should satisfy rule "intRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_addr" is not found in dut, it should satisfy rule "intRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_hold" is not found in dut, it should satisfy rule "intRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_addr" is not found in dut, it should satisfy rule "intRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_hold" is not found in dut, it should satisfy rule "intRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_addr" is not found in dut, it should satisfy rule "intRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_hold" is not found in dut, it should satisfy rule "intRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_addr" is not found in dut, it should satisfy rule "intRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_hold" is not found in dut, it should satisfy rule "intRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_addr" is not found in dut, it should satisfy rule "intRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_hold" is not found in dut, it should satisfy rule "intRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_blockBackward" is not found in dut, it should satisfy rule "out_0_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_canRobCompress" is not found in dut, it should satisfy rule "out_0_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_commitType" is not found in dut, it should satisfy rule "out_0_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_firstUop" is not found in dut, it should satisfy rule "out_0_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_flushPipe" is not found in dut, it should satisfy rule "out_0_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_foldpc" is not found in dut, it should satisfy rule "out_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpWen" is not found in dut, it should satisfy rule "out_0_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_rm" is not found in dut, it should satisfy rule "out_0_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typ" is not found in dut, it should satisfy rule "out_0_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_0_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_0_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqOffset" is not found in dut, it should satisfy rule "out_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuOpType" is not found in dut, it should satisfy rule "out_0_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuType" is not found in dut, it should satisfy rule "out_0_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_imm" is not found in dut, it should satisfy rule "out_0_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_instr" is not found in dut, it should satisfy rule "out_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isMove" is not found in dut, it should satisfy rule "out_0_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isVset" is not found in dut, it should satisfy rule "out_0_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isXSTrap" is not found in dut, it should satisfy rule "out_0_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lastUop" is not found in dut, it should satisfy rule "out_0_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ldest" is not found in dut, it should satisfy rule "out_0_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_0" is not found in dut, it should satisfy rule "out_0_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_1" is not found in dut, it should satisfy rule "out_0_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_2" is not found in dut, it should satisfy rule "out_0_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_numWB" is not found in dut, it should satisfy rule "out_0_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_pred_taken" is not found in dut, it should satisfy rule "out_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_rfWen" is not found in dut, it should satisfy rule "out_0_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_selImm" is not found in dut, it should satisfy rule "out_0_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_0" is not found in dut, it should satisfy rule "out_0_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_1" is not found in dut, it should satisfy rule "out_0_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_2" is not found in dut, it should satisfy rule "out_0_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_3" is not found in dut, it should satisfy rule "out_0_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_4" is not found in dut, it should satisfy rule "out_0_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_trigger" is not found in dut, it should satisfy rule "out_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopIdx" is not found in dut, it should satisfy rule "out_0_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopSplitType" is not found in dut, it should satisfy rule "out_0_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_v0Wen" is not found in dut, it should satisfy rule "out_0_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vecWen" is not found in dut, it should satisfy rule "out_0_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlWen" is not found in dut, it should satisfy rule "out_0_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlsInstr" is not found in dut, it should satisfy rule "out_0_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_0_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_0_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_0_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_0_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_0_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_0_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_0_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_0_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_0_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_0_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_nf" is not found in dut, it should satisfy rule "out_0_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_veew" is not found in dut, it should satisfy rule "out_0_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vill" is not found in dut, it should satisfy rule "out_0_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_0_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vm" is not found in dut, it should satisfy rule "out_0_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vma" is not found in dut, it should satisfy rule "out_0_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_0_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_0_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vta" is not found in dut, it should satisfy rule "out_0_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_waitForward" is not found in dut, it should satisfy rule "out_0_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_wfflags" is not found in dut, it should satisfy rule "out_0_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_ready" is not found in dut, it should satisfy rule "out_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_valid" is not found in dut, it should satisfy rule "out_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_blockBackward" is not found in dut, it should satisfy rule "out_1_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_canRobCompress" is not found in dut, it should satisfy rule "out_1_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_commitType" is not found in dut, it should satisfy rule "out_1_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_firstUop" is not found in dut, it should satisfy rule "out_1_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_flushPipe" is not found in dut, it should satisfy rule "out_1_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_foldpc" is not found in dut, it should satisfy rule "out_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpWen" is not found in dut, it should satisfy rule "out_1_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_rm" is not found in dut, it should satisfy rule "out_1_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typ" is not found in dut, it should satisfy rule "out_1_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_1_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_1_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqOffset" is not found in dut, it should satisfy rule "out_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuOpType" is not found in dut, it should satisfy rule "out_1_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuType" is not found in dut, it should satisfy rule "out_1_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_imm" is not found in dut, it should satisfy rule "out_1_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_instr" is not found in dut, it should satisfy rule "out_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isMove" is not found in dut, it should satisfy rule "out_1_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isVset" is not found in dut, it should satisfy rule "out_1_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isXSTrap" is not found in dut, it should satisfy rule "out_1_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lastUop" is not found in dut, it should satisfy rule "out_1_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ldest" is not found in dut, it should satisfy rule "out_1_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_0" is not found in dut, it should satisfy rule "out_1_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_1" is not found in dut, it should satisfy rule "out_1_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_2" is not found in dut, it should satisfy rule "out_1_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_numWB" is not found in dut, it should satisfy rule "out_1_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_pred_taken" is not found in dut, it should satisfy rule "out_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_rfWen" is not found in dut, it should satisfy rule "out_1_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_selImm" is not found in dut, it should satisfy rule "out_1_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_0" is not found in dut, it should satisfy rule "out_1_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_1" is not found in dut, it should satisfy rule "out_1_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_2" is not found in dut, it should satisfy rule "out_1_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_3" is not found in dut, it should satisfy rule "out_1_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_4" is not found in dut, it should satisfy rule "out_1_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_trigger" is not found in dut, it should satisfy rule "out_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopIdx" is not found in dut, it should satisfy rule "out_1_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopSplitType" is not found in dut, it should satisfy rule "out_1_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_v0Wen" is not found in dut, it should satisfy rule "out_1_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vecWen" is not found in dut, it should satisfy rule "out_1_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlWen" is not found in dut, it should satisfy rule "out_1_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlsInstr" is not found in dut, it should satisfy rule "out_1_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_1_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_1_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_1_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_1_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_1_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_1_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_1_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_1_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_1_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_1_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_nf" is not found in dut, it should satisfy rule "out_1_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_veew" is not found in dut, it should satisfy rule "out_1_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vill" is not found in dut, it should satisfy rule "out_1_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_1_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vm" is not found in dut, it should satisfy rule "out_1_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vma" is not found in dut, it should satisfy rule "out_1_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_1_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_1_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vta" is not found in dut, it should satisfy rule "out_1_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_waitForward" is not found in dut, it should satisfy rule "out_1_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_wfflags" is not found in dut, it should satisfy rule "out_1_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_ready" is not found in dut, it should satisfy rule "out_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_valid" is not found in dut, it should satisfy rule "out_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_blockBackward" is not found in dut, it should satisfy rule "out_2_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_canRobCompress" is not found in dut, it should satisfy rule "out_2_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_commitType" is not found in dut, it should satisfy rule "out_2_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_firstUop" is not found in dut, it should satisfy rule "out_2_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_flushPipe" is not found in dut, it should satisfy rule "out_2_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_foldpc" is not found in dut, it should satisfy rule "out_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpWen" is not found in dut, it should satisfy rule "out_2_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_rm" is not found in dut, it should satisfy rule "out_2_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typ" is not found in dut, it should satisfy rule "out_2_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_2_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_2_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqOffset" is not found in dut, it should satisfy rule "out_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuOpType" is not found in dut, it should satisfy rule "out_2_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuType" is not found in dut, it should satisfy rule "out_2_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_imm" is not found in dut, it should satisfy rule "out_2_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_instr" is not found in dut, it should satisfy rule "out_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isMove" is not found in dut, it should satisfy rule "out_2_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isVset" is not found in dut, it should satisfy rule "out_2_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isXSTrap" is not found in dut, it should satisfy rule "out_2_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lastUop" is not found in dut, it should satisfy rule "out_2_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ldest" is not found in dut, it should satisfy rule "out_2_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_0" is not found in dut, it should satisfy rule "out_2_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_1" is not found in dut, it should satisfy rule "out_2_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_2" is not found in dut, it should satisfy rule "out_2_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_numWB" is not found in dut, it should satisfy rule "out_2_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_pred_taken" is not found in dut, it should satisfy rule "out_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_rfWen" is not found in dut, it should satisfy rule "out_2_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_selImm" is not found in dut, it should satisfy rule "out_2_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_0" is not found in dut, it should satisfy rule "out_2_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_1" is not found in dut, it should satisfy rule "out_2_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_2" is not found in dut, it should satisfy rule "out_2_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_3" is not found in dut, it should satisfy rule "out_2_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_4" is not found in dut, it should satisfy rule "out_2_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_trigger" is not found in dut, it should satisfy rule "out_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopIdx" is not found in dut, it should satisfy rule "out_2_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopSplitType" is not found in dut, it should satisfy rule "out_2_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_v0Wen" is not found in dut, it should satisfy rule "out_2_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vecWen" is not found in dut, it should satisfy rule "out_2_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlWen" is not found in dut, it should satisfy rule "out_2_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlsInstr" is not found in dut, it should satisfy rule "out_2_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_2_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_2_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_2_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_2_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_2_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_2_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_2_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_2_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_2_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_2_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_nf" is not found in dut, it should satisfy rule "out_2_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_veew" is not found in dut, it should satisfy rule "out_2_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vill" is not found in dut, it should satisfy rule "out_2_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_2_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vm" is not found in dut, it should satisfy rule "out_2_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vma" is not found in dut, it should satisfy rule "out_2_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_2_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_2_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vta" is not found in dut, it should satisfy rule "out_2_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_waitForward" is not found in dut, it should satisfy rule "out_2_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_wfflags" is not found in dut, it should satisfy rule "out_2_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_ready" is not found in dut, it should satisfy rule "out_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_valid" is not found in dut, it should satisfy rule "out_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_blockBackward" is not found in dut, it should satisfy rule "out_3_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_canRobCompress" is not found in dut, it should satisfy rule "out_3_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_commitType" is not found in dut, it should satisfy rule "out_3_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_firstUop" is not found in dut, it should satisfy rule "out_3_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_flushPipe" is not found in dut, it should satisfy rule "out_3_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_foldpc" is not found in dut, it should satisfy rule "out_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpWen" is not found in dut, it should satisfy rule "out_3_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_rm" is not found in dut, it should satisfy rule "out_3_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typ" is not found in dut, it should satisfy rule "out_3_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_3_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_3_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqOffset" is not found in dut, it should satisfy rule "out_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuOpType" is not found in dut, it should satisfy rule "out_3_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuType" is not found in dut, it should satisfy rule "out_3_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_imm" is not found in dut, it should satisfy rule "out_3_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_instr" is not found in dut, it should satisfy rule "out_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isMove" is not found in dut, it should satisfy rule "out_3_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isVset" is not found in dut, it should satisfy rule "out_3_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isXSTrap" is not found in dut, it should satisfy rule "out_3_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lastUop" is not found in dut, it should satisfy rule "out_3_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ldest" is not found in dut, it should satisfy rule "out_3_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_0" is not found in dut, it should satisfy rule "out_3_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_1" is not found in dut, it should satisfy rule "out_3_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_2" is not found in dut, it should satisfy rule "out_3_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_numWB" is not found in dut, it should satisfy rule "out_3_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_pred_taken" is not found in dut, it should satisfy rule "out_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_rfWen" is not found in dut, it should satisfy rule "out_3_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_selImm" is not found in dut, it should satisfy rule "out_3_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_0" is not found in dut, it should satisfy rule "out_3_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_1" is not found in dut, it should satisfy rule "out_3_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_2" is not found in dut, it should satisfy rule "out_3_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_3" is not found in dut, it should satisfy rule "out_3_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_4" is not found in dut, it should satisfy rule "out_3_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_trigger" is not found in dut, it should satisfy rule "out_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopIdx" is not found in dut, it should satisfy rule "out_3_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopSplitType" is not found in dut, it should satisfy rule "out_3_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_v0Wen" is not found in dut, it should satisfy rule "out_3_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vecWen" is not found in dut, it should satisfy rule "out_3_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlWen" is not found in dut, it should satisfy rule "out_3_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlsInstr" is not found in dut, it should satisfy rule "out_3_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_3_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_3_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_3_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_3_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_3_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_3_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_3_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_3_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_3_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_3_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_nf" is not found in dut, it should satisfy rule "out_3_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_veew" is not found in dut, it should satisfy rule "out_3_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vill" is not found in dut, it should satisfy rule "out_3_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_3_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vm" is not found in dut, it should satisfy rule "out_3_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vma" is not found in dut, it should satisfy rule "out_3_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_3_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_3_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vta" is not found in dut, it should satisfy rule "out_3_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_waitForward" is not found in dut, it should satisfy rule "out_3_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_wfflags" is not found in dut, it should satisfy rule "out_3_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_ready" is not found in dut, it should satisfy rule "out_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_valid" is not found in dut, it should satisfy rule "out_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_blockBackward" is not found in dut, it should satisfy rule "out_4_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_canRobCompress" is not found in dut, it should satisfy rule "out_4_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_commitType" is not found in dut, it should satisfy rule "out_4_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_firstUop" is not found in dut, it should satisfy rule "out_4_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_flushPipe" is not found in dut, it should satisfy rule "out_4_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_foldpc" is not found in dut, it should satisfy rule "out_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpWen" is not found in dut, it should satisfy rule "out_4_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_rm" is not found in dut, it should satisfy rule "out_4_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typ" is not found in dut, it should satisfy rule "out_4_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_4_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_4_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqOffset" is not found in dut, it should satisfy rule "out_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuOpType" is not found in dut, it should satisfy rule "out_4_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuType" is not found in dut, it should satisfy rule "out_4_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_imm" is not found in dut, it should satisfy rule "out_4_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_instr" is not found in dut, it should satisfy rule "out_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isMove" is not found in dut, it should satisfy rule "out_4_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isVset" is not found in dut, it should satisfy rule "out_4_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isXSTrap" is not found in dut, it should satisfy rule "out_4_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lastUop" is not found in dut, it should satisfy rule "out_4_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ldest" is not found in dut, it should satisfy rule "out_4_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_0" is not found in dut, it should satisfy rule "out_4_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_1" is not found in dut, it should satisfy rule "out_4_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_2" is not found in dut, it should satisfy rule "out_4_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_numWB" is not found in dut, it should satisfy rule "out_4_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_pred_taken" is not found in dut, it should satisfy rule "out_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_rfWen" is not found in dut, it should satisfy rule "out_4_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_selImm" is not found in dut, it should satisfy rule "out_4_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_0" is not found in dut, it should satisfy rule "out_4_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_1" is not found in dut, it should satisfy rule "out_4_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_2" is not found in dut, it should satisfy rule "out_4_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_3" is not found in dut, it should satisfy rule "out_4_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_4" is not found in dut, it should satisfy rule "out_4_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_trigger" is not found in dut, it should satisfy rule "out_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopIdx" is not found in dut, it should satisfy rule "out_4_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopSplitType" is not found in dut, it should satisfy rule "out_4_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_v0Wen" is not found in dut, it should satisfy rule "out_4_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vecWen" is not found in dut, it should satisfy rule "out_4_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlWen" is not found in dut, it should satisfy rule "out_4_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlsInstr" is not found in dut, it should satisfy rule "out_4_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_4_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_4_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_4_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_4_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_4_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_4_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_4_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_4_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_4_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_4_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_nf" is not found in dut, it should satisfy rule "out_4_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_veew" is not found in dut, it should satisfy rule "out_4_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vill" is not found in dut, it should satisfy rule "out_4_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_4_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vm" is not found in dut, it should satisfy rule "out_4_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vma" is not found in dut, it should satisfy rule "out_4_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_4_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_4_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vta" is not found in dut, it should satisfy rule "out_4_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_waitForward" is not found in dut, it should satisfy rule "out_4_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_wfflags" is not found in dut, it should satisfy rule "out_4_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_ready" is not found in dut, it should satisfy rule "out_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_valid" is not found in dut, it should satisfy rule "out_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_blockBackward" is not found in dut, it should satisfy rule "out_5_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_canRobCompress" is not found in dut, it should satisfy rule "out_5_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_commitType" is not found in dut, it should satisfy rule "out_5_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_firstUop" is not found in dut, it should satisfy rule "out_5_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_flushPipe" is not found in dut, it should satisfy rule "out_5_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_foldpc" is not found in dut, it should satisfy rule "out_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpWen" is not found in dut, it should satisfy rule "out_5_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_rm" is not found in dut, it should satisfy rule "out_5_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typ" is not found in dut, it should satisfy rule "out_5_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_5_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_5_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqOffset" is not found in dut, it should satisfy rule "out_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuOpType" is not found in dut, it should satisfy rule "out_5_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuType" is not found in dut, it should satisfy rule "out_5_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_imm" is not found in dut, it should satisfy rule "out_5_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_instr" is not found in dut, it should satisfy rule "out_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isMove" is not found in dut, it should satisfy rule "out_5_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isVset" is not found in dut, it should satisfy rule "out_5_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isXSTrap" is not found in dut, it should satisfy rule "out_5_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lastUop" is not found in dut, it should satisfy rule "out_5_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ldest" is not found in dut, it should satisfy rule "out_5_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_0" is not found in dut, it should satisfy rule "out_5_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_1" is not found in dut, it should satisfy rule "out_5_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_2" is not found in dut, it should satisfy rule "out_5_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_numWB" is not found in dut, it should satisfy rule "out_5_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_pred_taken" is not found in dut, it should satisfy rule "out_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_rfWen" is not found in dut, it should satisfy rule "out_5_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_selImm" is not found in dut, it should satisfy rule "out_5_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_0" is not found in dut, it should satisfy rule "out_5_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_1" is not found in dut, it should satisfy rule "out_5_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_2" is not found in dut, it should satisfy rule "out_5_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_3" is not found in dut, it should satisfy rule "out_5_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_4" is not found in dut, it should satisfy rule "out_5_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_trigger" is not found in dut, it should satisfy rule "out_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopIdx" is not found in dut, it should satisfy rule "out_5_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopSplitType" is not found in dut, it should satisfy rule "out_5_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_v0Wen" is not found in dut, it should satisfy rule "out_5_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vecWen" is not found in dut, it should satisfy rule "out_5_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlWen" is not found in dut, it should satisfy rule "out_5_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlsInstr" is not found in dut, it should satisfy rule "out_5_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_5_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_5_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_5_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_5_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_5_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_5_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_5_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_5_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_5_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_5_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_nf" is not found in dut, it should satisfy rule "out_5_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_veew" is not found in dut, it should satisfy rule "out_5_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vill" is not found in dut, it should satisfy rule "out_5_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_5_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vm" is not found in dut, it should satisfy rule "out_5_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vma" is not found in dut, it should satisfy rule "out_5_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_5_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_5_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vta" is not found in dut, it should satisfy rule "out_5_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_waitForward" is not found in dut, it should satisfy rule "out_5_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_wfflags" is not found in dut, it should satisfy rule "out_5_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_ready" is not found in dut, it should satisfy rule "out_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_valid" is not found in dut, it should satisfy rule "out_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_0_value" is not found in dut, it should satisfy rule "perf_0_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_1_value" is not found in dut, it should satisfy rule "perf_1_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_2_value" is not found in dut, it should satisfy rule "perf_2_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_3_value" is not found in dut, it should satisfy rule "perf_3_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "redirect" is not found in dut, it should satisfy rule "redirect"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqOffset" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_value" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_instr" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_valid" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_addr" is not found in dut, it should satisfy rule "vecRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_hold" is not found in dut, it should satisfy rule "vecRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_addr" is not found in dut, it should satisfy rule "vecRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_hold" is not found in dut, it should satisfy rule "vecRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_addr" is not found in dut, it should satisfy rule "vecRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_hold" is not found in dut, it should satisfy rule "vecRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_addr" is not found in dut, it should satisfy rule "vecRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_hold" is not found in dut, it should satisfy rule "vecRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_addr" is not found in dut, it should satisfy rule "vecRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_hold" is not found in dut, it should satisfy rule "vecRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_addr" is not found in dut, it should satisfy rule "vecRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_hold" is not found in dut, it should satisfy rule "vecRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_addr" is not found in dut, it should satisfy rule "vecRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_hold" is not found in dut, it should satisfy rule "vecRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_addr" is not found in dut, it should satisfy rule "vecRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_hold" is not found in dut, it should satisfy rule "vecRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_addr" is not found in dut, it should satisfy rule "vecRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_hold" is not found in dut, it should satisfy rule "vecRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_addr" is not found in dut, it should satisfy rule "vecRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_hold" is not found in dut, it should satisfy rule "vecRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_addr" is not found in dut, it should satisfy rule "vecRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_hold" is not found in dut, it should satisfy rule "vecRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_addr" is not found in dut, it should satisfy rule "vecRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_hold" is not found in dut, it should satisfy rule "vecRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_addr" is not found in dut, it should satisfy rule "vecRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_hold" is not found in dut, it should satisfy rule "vecRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_addr" is not found in dut, it should satisfy rule "vecRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_hold" is not found in dut, it should satisfy rule "vecRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_addr" is not found in dut, it should satisfy rule "vecRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_hold" is not found in dut, it should satisfy rule "vecRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_addr" is not found in dut, it should satisfy rule "vecRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_hold" is not found in dut, it should satisfy rule "vecRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_addr" is not found in dut, it should satisfy rule "vecRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_hold" is not found in dut, it should satisfy rule "vecRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_addr" is not found in dut, it should satisfy rule "vecRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_hold" is not found in dut, it should satisfy rule "vecRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_illegal" is not found in dut, it should satisfy rule "vsetvlVType_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vlmul" is not found in dut, it should satisfy rule "vsetvlVType_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vma" is not found in dut, it should satisfy rule "vsetvlVType_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vsew" is not found in dut, it should satisfy rule "vsetvlVType_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vta" is not found in dut, it should satisfy rule "vsetvlVType_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vstart" is not found in dut, it should satisfy rule "vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "in"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "out_bits"

Call

Teardown

Captured log teardown
ERROR    asyncio:base_events.py:1758 Task was destroyed but it is pending!
task: <Task pending name='__clock_loop' coro=<__clock_loop() running at /usr/local/lib/python3.10/dist-packages/toffee/asynchronous.py:141>>
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

ut_frontend/ifu/rvc_expander/classical_version/test_rvc_expander.py 1211 0:01:43.222996

PASSED test_rvc_expand_16bit_smoke 0:00:00.015745

Test the RVC expand function with 1 compressed instruction

Setup

Call

Teardown

PASSED test_rvc_expand_16bit_full[0-6553] 0:00:08.935863

Test the RVC expand function with a full compressed instruction set

Description:

Perform an expand check on 16-bit compressed instructions within the range from 'start' to 'end'.

Setup

Call

Teardown

PASSED test_rvc_expand_16bit_full[19659-26212] 0:00:08.880054

Test the RVC expand function with a full compressed instruction set

Description:

Perform an expand check on 16-bit compressed instructions within the range from 'start' to 'end'.

Setup

Call

Teardown

PASSED test_rvc_expand_16bit_full[45871-52424] 0:00:09.378942

Test the RVC expand function with a full compressed instruction set

Description:

Perform an expand check on 16-bit compressed instructions within the range from 'start' to 'end'.

Setup

Call

Teardown

PASSED test_rvc_expand_32bit_smoke 0:00:03.237099

Test the RVC expand function with 1 fixed 32 bit instruction

Setup

Captured log setup
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "csrCtrl_singlestep" is not found in dut, it should satisfy rule "csrCtrl_singlestep"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_addr" is not found in dut, it should satisfy rule "fpRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_hold" is not found in dut, it should satisfy rule "fpRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_addr" is not found in dut, it should satisfy rule "fpRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_hold" is not found in dut, it should satisfy rule "fpRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_addr" is not found in dut, it should satisfy rule "fpRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_hold" is not found in dut, it should satisfy rule "fpRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_addr" is not found in dut, it should satisfy rule "fpRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_hold" is not found in dut, it should satisfy rule "fpRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_addr" is not found in dut, it should satisfy rule "fpRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_hold" is not found in dut, it should satisfy rule "fpRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_addr" is not found in dut, it should satisfy rule "fpRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_hold" is not found in dut, it should satisfy rule "fpRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_addr" is not found in dut, it should satisfy rule "fpRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_hold" is not found in dut, it should satisfy rule "fpRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_addr" is not found in dut, it should satisfy rule "fpRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_hold" is not found in dut, it should satisfy rule "fpRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_addr" is not found in dut, it should satisfy rule "fpRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_hold" is not found in dut, it should satisfy rule "fpRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_addr" is not found in dut, it should satisfy rule "fpRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_hold" is not found in dut, it should satisfy rule "fpRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_addr" is not found in dut, it should satisfy rule "fpRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_hold" is not found in dut, it should satisfy rule "fpRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_addr" is not found in dut, it should satisfy rule "fpRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_hold" is not found in dut, it should satisfy rule "fpRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_addr" is not found in dut, it should satisfy rule "fpRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_hold" is not found in dut, it should satisfy rule "fpRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_addr" is not found in dut, it should satisfy rule "fpRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_hold" is not found in dut, it should satisfy rule "fpRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_addr" is not found in dut, it should satisfy rule "fpRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_hold" is not found in dut, it should satisfy rule "fpRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_addr" is not found in dut, it should satisfy rule "fpRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_hold" is not found in dut, it should satisfy rule "fpRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_addr" is not found in dut, it should satisfy rule "fpRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_hold" is not found in dut, it should satisfy rule "fpRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_addr" is not found in dut, it should satisfy rule "fpRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_hold" is not found in dut, it should satisfy rule "fpRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboCF" is not found in dut, it should satisfy rule "fromCSR_illegalInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboI" is not found in dut, it should satisfy rule "fromCSR_illegalInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboZ" is not found in dut, it should satisfy rule "fromCSR_illegalInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_frm" is not found in dut, it should satisfy rule "fromCSR_illegalInst_frm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_fsIsOff" is not found in dut, it should satisfy rule "fromCSR_illegalInst_fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceGVMA" is not found in dut, it should satisfy rule "fromCSR_illegalInst_hfenceGVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceVVMA" is not found in dut, it should satisfy rule "fromCSR_illegalInst_hfenceVVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hlsv" is not found in dut, it should satisfy rule "fromCSR_illegalInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfencePart" is not found in dut, it should satisfy rule "fromCSR_illegalInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfenceVMA" is not found in dut, it should satisfy rule "fromCSR_illegalInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_vsIsOff" is not found in dut, it should satisfy rule "fromCSR_illegalInst_vsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_wfi" is not found in dut, it should satisfy rule "fromCSR_illegalInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_special_cboI2F" is not found in dut, it should satisfy rule "fromCSR_special_cboI2F"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboCF" is not found in dut, it should satisfy rule "fromCSR_virtualInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboI" is not found in dut, it should satisfy rule "fromCSR_virtualInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboZ" is not found in dut, it should satisfy rule "fromCSR_virtualInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hfence" is not found in dut, it should satisfy rule "fromCSR_virtualInst_hfence"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hlsv" is not found in dut, it should satisfy rule "fromCSR_virtualInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfencePart" is not found in dut, it should satisfy rule "fromCSR_virtualInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfenceVMA" is not found in dut, it should satisfy rule "fromCSR_virtualInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_wfi" is not found in dut, it should satisfy rule "fromCSR_virtualInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_hasVsetvl" is not found in dut, it should satisfy rule "fromRob_commitVType_hasVsetvl"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_illegal" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vlmul" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vma" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vsew" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vta" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_valid" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_isResumeVType" is not found in dut, it should satisfy rule "fromRob_isResumeVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkToArchVType" is not found in dut, it should satisfy rule "fromRob_walkToArchVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_illegal" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vlmul" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vma" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vsew" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vta" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_valid" is not found in dut, it should satisfy rule "fromRob_walkVType_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_0" is not found in dut, it should satisfy rule "fusion_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_1" is not found in dut, it should satisfy rule "fusion_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_2" is not found in dut, it should satisfy rule "fusion_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_3" is not found in dut, it should satisfy rule "fusion_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_4" is not found in dut, it should satisfy rule "fusion_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_foldpc" is not found in dut, it should satisfy rule "in_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqOffset" is not found in dut, it should satisfy rule "in_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_instr" is not found in dut, it should satisfy rule "in_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_0_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_pred_taken" is not found in dut, it should satisfy rule "in_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_trigger" is not found in dut, it should satisfy rule "in_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_ready" is not found in dut, it should satisfy rule "in_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_valid" is not found in dut, it should satisfy rule "in_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_foldpc" is not found in dut, it should satisfy rule "in_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqOffset" is not found in dut, it should satisfy rule "in_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_instr" is not found in dut, it should satisfy rule "in_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_1_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_pred_taken" is not found in dut, it should satisfy rule "in_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_trigger" is not found in dut, it should satisfy rule "in_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_ready" is not found in dut, it should satisfy rule "in_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_valid" is not found in dut, it should satisfy rule "in_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_foldpc" is not found in dut, it should satisfy rule "in_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqOffset" is not found in dut, it should satisfy rule "in_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_instr" is not found in dut, it should satisfy rule "in_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_2_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_pred_taken" is not found in dut, it should satisfy rule "in_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_trigger" is not found in dut, it should satisfy rule "in_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_ready" is not found in dut, it should satisfy rule "in_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_valid" is not found in dut, it should satisfy rule "in_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_foldpc" is not found in dut, it should satisfy rule "in_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqOffset" is not found in dut, it should satisfy rule "in_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_instr" is not found in dut, it should satisfy rule "in_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_3_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_pred_taken" is not found in dut, it should satisfy rule "in_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_trigger" is not found in dut, it should satisfy rule "in_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_ready" is not found in dut, it should satisfy rule "in_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_valid" is not found in dut, it should satisfy rule "in_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_foldpc" is not found in dut, it should satisfy rule "in_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqOffset" is not found in dut, it should satisfy rule "in_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_instr" is not found in dut, it should satisfy rule "in_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_4_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_pred_taken" is not found in dut, it should satisfy rule "in_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_trigger" is not found in dut, it should satisfy rule "in_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_ready" is not found in dut, it should satisfy rule "in_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_valid" is not found in dut, it should satisfy rule "in_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_foldpc" is not found in dut, it should satisfy rule "in_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqOffset" is not found in dut, it should satisfy rule "in_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_instr" is not found in dut, it should satisfy rule "in_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_5_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_pred_taken" is not found in dut, it should satisfy rule "in_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_trigger" is not found in dut, it should satisfy rule "in_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_ready" is not found in dut, it should satisfy rule "in_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_valid" is not found in dut, it should satisfy rule "in_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_addr" is not found in dut, it should satisfy rule "intRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_hold" is not found in dut, it should satisfy rule "intRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_addr" is not found in dut, it should satisfy rule "intRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_hold" is not found in dut, it should satisfy rule "intRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_addr" is not found in dut, it should satisfy rule "intRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_hold" is not found in dut, it should satisfy rule "intRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_addr" is not found in dut, it should satisfy rule "intRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_hold" is not found in dut, it should satisfy rule "intRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_addr" is not found in dut, it should satisfy rule "intRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_hold" is not found in dut, it should satisfy rule "intRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_addr" is not found in dut, it should satisfy rule "intRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_hold" is not found in dut, it should satisfy rule "intRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_addr" is not found in dut, it should satisfy rule "intRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_hold" is not found in dut, it should satisfy rule "intRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_addr" is not found in dut, it should satisfy rule "intRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_hold" is not found in dut, it should satisfy rule "intRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_addr" is not found in dut, it should satisfy rule "intRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_hold" is not found in dut, it should satisfy rule "intRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_addr" is not found in dut, it should satisfy rule "intRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_hold" is not found in dut, it should satisfy rule "intRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_addr" is not found in dut, it should satisfy rule "intRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_hold" is not found in dut, it should satisfy rule "intRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_addr" is not found in dut, it should satisfy rule "intRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_hold" is not found in dut, it should satisfy rule "intRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_blockBackward" is not found in dut, it should satisfy rule "out_0_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_canRobCompress" is not found in dut, it should satisfy rule "out_0_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_commitType" is not found in dut, it should satisfy rule "out_0_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_firstUop" is not found in dut, it should satisfy rule "out_0_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_flushPipe" is not found in dut, it should satisfy rule "out_0_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_foldpc" is not found in dut, it should satisfy rule "out_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpWen" is not found in dut, it should satisfy rule "out_0_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_rm" is not found in dut, it should satisfy rule "out_0_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typ" is not found in dut, it should satisfy rule "out_0_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_0_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_0_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqOffset" is not found in dut, it should satisfy rule "out_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuOpType" is not found in dut, it should satisfy rule "out_0_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuType" is not found in dut, it should satisfy rule "out_0_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_imm" is not found in dut, it should satisfy rule "out_0_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_instr" is not found in dut, it should satisfy rule "out_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isMove" is not found in dut, it should satisfy rule "out_0_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isVset" is not found in dut, it should satisfy rule "out_0_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isXSTrap" is not found in dut, it should satisfy rule "out_0_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lastUop" is not found in dut, it should satisfy rule "out_0_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ldest" is not found in dut, it should satisfy rule "out_0_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_0" is not found in dut, it should satisfy rule "out_0_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_1" is not found in dut, it should satisfy rule "out_0_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_2" is not found in dut, it should satisfy rule "out_0_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_numWB" is not found in dut, it should satisfy rule "out_0_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_pred_taken" is not found in dut, it should satisfy rule "out_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_rfWen" is not found in dut, it should satisfy rule "out_0_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_selImm" is not found in dut, it should satisfy rule "out_0_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_0" is not found in dut, it should satisfy rule "out_0_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_1" is not found in dut, it should satisfy rule "out_0_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_2" is not found in dut, it should satisfy rule "out_0_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_3" is not found in dut, it should satisfy rule "out_0_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_4" is not found in dut, it should satisfy rule "out_0_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_trigger" is not found in dut, it should satisfy rule "out_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopIdx" is not found in dut, it should satisfy rule "out_0_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopSplitType" is not found in dut, it should satisfy rule "out_0_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_v0Wen" is not found in dut, it should satisfy rule "out_0_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vecWen" is not found in dut, it should satisfy rule "out_0_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlWen" is not found in dut, it should satisfy rule "out_0_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlsInstr" is not found in dut, it should satisfy rule "out_0_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_0_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_0_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_0_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_0_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_0_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_0_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_0_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_0_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_0_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_0_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_nf" is not found in dut, it should satisfy rule "out_0_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_veew" is not found in dut, it should satisfy rule "out_0_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vill" is not found in dut, it should satisfy rule "out_0_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_0_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vm" is not found in dut, it should satisfy rule "out_0_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vma" is not found in dut, it should satisfy rule "out_0_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_0_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_0_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vta" is not found in dut, it should satisfy rule "out_0_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_waitForward" is not found in dut, it should satisfy rule "out_0_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_wfflags" is not found in dut, it should satisfy rule "out_0_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_ready" is not found in dut, it should satisfy rule "out_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_valid" is not found in dut, it should satisfy rule "out_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_blockBackward" is not found in dut, it should satisfy rule "out_1_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_canRobCompress" is not found in dut, it should satisfy rule "out_1_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_commitType" is not found in dut, it should satisfy rule "out_1_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_firstUop" is not found in dut, it should satisfy rule "out_1_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_flushPipe" is not found in dut, it should satisfy rule "out_1_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_foldpc" is not found in dut, it should satisfy rule "out_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpWen" is not found in dut, it should satisfy rule "out_1_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_rm" is not found in dut, it should satisfy rule "out_1_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typ" is not found in dut, it should satisfy rule "out_1_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_1_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_1_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqOffset" is not found in dut, it should satisfy rule "out_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuOpType" is not found in dut, it should satisfy rule "out_1_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuType" is not found in dut, it should satisfy rule "out_1_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_imm" is not found in dut, it should satisfy rule "out_1_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_instr" is not found in dut, it should satisfy rule "out_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isMove" is not found in dut, it should satisfy rule "out_1_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isVset" is not found in dut, it should satisfy rule "out_1_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isXSTrap" is not found in dut, it should satisfy rule "out_1_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lastUop" is not found in dut, it should satisfy rule "out_1_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ldest" is not found in dut, it should satisfy rule "out_1_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_0" is not found in dut, it should satisfy rule "out_1_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_1" is not found in dut, it should satisfy rule "out_1_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_2" is not found in dut, it should satisfy rule "out_1_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_numWB" is not found in dut, it should satisfy rule "out_1_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_pred_taken" is not found in dut, it should satisfy rule "out_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_rfWen" is not found in dut, it should satisfy rule "out_1_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_selImm" is not found in dut, it should satisfy rule "out_1_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_0" is not found in dut, it should satisfy rule "out_1_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_1" is not found in dut, it should satisfy rule "out_1_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_2" is not found in dut, it should satisfy rule "out_1_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_3" is not found in dut, it should satisfy rule "out_1_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_4" is not found in dut, it should satisfy rule "out_1_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_trigger" is not found in dut, it should satisfy rule "out_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopIdx" is not found in dut, it should satisfy rule "out_1_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopSplitType" is not found in dut, it should satisfy rule "out_1_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_v0Wen" is not found in dut, it should satisfy rule "out_1_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vecWen" is not found in dut, it should satisfy rule "out_1_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlWen" is not found in dut, it should satisfy rule "out_1_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlsInstr" is not found in dut, it should satisfy rule "out_1_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_1_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_1_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_1_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_1_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_1_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_1_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_1_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_1_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_1_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_1_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_nf" is not found in dut, it should satisfy rule "out_1_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_veew" is not found in dut, it should satisfy rule "out_1_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vill" is not found in dut, it should satisfy rule "out_1_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_1_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vm" is not found in dut, it should satisfy rule "out_1_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vma" is not found in dut, it should satisfy rule "out_1_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_1_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_1_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vta" is not found in dut, it should satisfy rule "out_1_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_waitForward" is not found in dut, it should satisfy rule "out_1_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_wfflags" is not found in dut, it should satisfy rule "out_1_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_ready" is not found in dut, it should satisfy rule "out_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_valid" is not found in dut, it should satisfy rule "out_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_blockBackward" is not found in dut, it should satisfy rule "out_2_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_canRobCompress" is not found in dut, it should satisfy rule "out_2_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_commitType" is not found in dut, it should satisfy rule "out_2_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_firstUop" is not found in dut, it should satisfy rule "out_2_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_flushPipe" is not found in dut, it should satisfy rule "out_2_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_foldpc" is not found in dut, it should satisfy rule "out_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpWen" is not found in dut, it should satisfy rule "out_2_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_rm" is not found in dut, it should satisfy rule "out_2_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typ" is not found in dut, it should satisfy rule "out_2_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_2_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_2_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqOffset" is not found in dut, it should satisfy rule "out_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuOpType" is not found in dut, it should satisfy rule "out_2_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuType" is not found in dut, it should satisfy rule "out_2_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_imm" is not found in dut, it should satisfy rule "out_2_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_instr" is not found in dut, it should satisfy rule "out_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isMove" is not found in dut, it should satisfy rule "out_2_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isVset" is not found in dut, it should satisfy rule "out_2_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isXSTrap" is not found in dut, it should satisfy rule "out_2_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lastUop" is not found in dut, it should satisfy rule "out_2_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ldest" is not found in dut, it should satisfy rule "out_2_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_0" is not found in dut, it should satisfy rule "out_2_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_1" is not found in dut, it should satisfy rule "out_2_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_2" is not found in dut, it should satisfy rule "out_2_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_numWB" is not found in dut, it should satisfy rule "out_2_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_pred_taken" is not found in dut, it should satisfy rule "out_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_rfWen" is not found in dut, it should satisfy rule "out_2_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_selImm" is not found in dut, it should satisfy rule "out_2_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_0" is not found in dut, it should satisfy rule "out_2_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_1" is not found in dut, it should satisfy rule "out_2_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_2" is not found in dut, it should satisfy rule "out_2_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_3" is not found in dut, it should satisfy rule "out_2_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_4" is not found in dut, it should satisfy rule "out_2_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_trigger" is not found in dut, it should satisfy rule "out_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopIdx" is not found in dut, it should satisfy rule "out_2_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopSplitType" is not found in dut, it should satisfy rule "out_2_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_v0Wen" is not found in dut, it should satisfy rule "out_2_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vecWen" is not found in dut, it should satisfy rule "out_2_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlWen" is not found in dut, it should satisfy rule "out_2_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlsInstr" is not found in dut, it should satisfy rule "out_2_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_2_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_2_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_2_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_2_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_2_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_2_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_2_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_2_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_2_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_2_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_nf" is not found in dut, it should satisfy rule "out_2_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_veew" is not found in dut, it should satisfy rule "out_2_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vill" is not found in dut, it should satisfy rule "out_2_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_2_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vm" is not found in dut, it should satisfy rule "out_2_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vma" is not found in dut, it should satisfy rule "out_2_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_2_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_2_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vta" is not found in dut, it should satisfy rule "out_2_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_waitForward" is not found in dut, it should satisfy rule "out_2_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_wfflags" is not found in dut, it should satisfy rule "out_2_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_ready" is not found in dut, it should satisfy rule "out_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_valid" is not found in dut, it should satisfy rule "out_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_blockBackward" is not found in dut, it should satisfy rule "out_3_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_canRobCompress" is not found in dut, it should satisfy rule "out_3_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_commitType" is not found in dut, it should satisfy rule "out_3_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_firstUop" is not found in dut, it should satisfy rule "out_3_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_flushPipe" is not found in dut, it should satisfy rule "out_3_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_foldpc" is not found in dut, it should satisfy rule "out_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpWen" is not found in dut, it should satisfy rule "out_3_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_rm" is not found in dut, it should satisfy rule "out_3_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typ" is not found in dut, it should satisfy rule "out_3_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_3_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_3_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqOffset" is not found in dut, it should satisfy rule "out_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuOpType" is not found in dut, it should satisfy rule "out_3_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuType" is not found in dut, it should satisfy rule "out_3_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_imm" is not found in dut, it should satisfy rule "out_3_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_instr" is not found in dut, it should satisfy rule "out_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isMove" is not found in dut, it should satisfy rule "out_3_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isVset" is not found in dut, it should satisfy rule "out_3_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isXSTrap" is not found in dut, it should satisfy rule "out_3_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lastUop" is not found in dut, it should satisfy rule "out_3_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ldest" is not found in dut, it should satisfy rule "out_3_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_0" is not found in dut, it should satisfy rule "out_3_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_1" is not found in dut, it should satisfy rule "out_3_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_2" is not found in dut, it should satisfy rule "out_3_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_numWB" is not found in dut, it should satisfy rule "out_3_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_pred_taken" is not found in dut, it should satisfy rule "out_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_rfWen" is not found in dut, it should satisfy rule "out_3_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_selImm" is not found in dut, it should satisfy rule "out_3_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_0" is not found in dut, it should satisfy rule "out_3_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_1" is not found in dut, it should satisfy rule "out_3_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_2" is not found in dut, it should satisfy rule "out_3_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_3" is not found in dut, it should satisfy rule "out_3_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_4" is not found in dut, it should satisfy rule "out_3_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_trigger" is not found in dut, it should satisfy rule "out_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopIdx" is not found in dut, it should satisfy rule "out_3_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopSplitType" is not found in dut, it should satisfy rule "out_3_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_v0Wen" is not found in dut, it should satisfy rule "out_3_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vecWen" is not found in dut, it should satisfy rule "out_3_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlWen" is not found in dut, it should satisfy rule "out_3_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlsInstr" is not found in dut, it should satisfy rule "out_3_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_3_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_3_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_3_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_3_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_3_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_3_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_3_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_3_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_3_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_3_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_nf" is not found in dut, it should satisfy rule "out_3_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_veew" is not found in dut, it should satisfy rule "out_3_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vill" is not found in dut, it should satisfy rule "out_3_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_3_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vm" is not found in dut, it should satisfy rule "out_3_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vma" is not found in dut, it should satisfy rule "out_3_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_3_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_3_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vta" is not found in dut, it should satisfy rule "out_3_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_waitForward" is not found in dut, it should satisfy rule "out_3_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_wfflags" is not found in dut, it should satisfy rule "out_3_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_ready" is not found in dut, it should satisfy rule "out_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_valid" is not found in dut, it should satisfy rule "out_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_blockBackward" is not found in dut, it should satisfy rule "out_4_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_canRobCompress" is not found in dut, it should satisfy rule "out_4_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_commitType" is not found in dut, it should satisfy rule "out_4_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_firstUop" is not found in dut, it should satisfy rule "out_4_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_flushPipe" is not found in dut, it should satisfy rule "out_4_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_foldpc" is not found in dut, it should satisfy rule "out_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpWen" is not found in dut, it should satisfy rule "out_4_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_rm" is not found in dut, it should satisfy rule "out_4_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typ" is not found in dut, it should satisfy rule "out_4_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_4_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_4_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqOffset" is not found in dut, it should satisfy rule "out_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuOpType" is not found in dut, it should satisfy rule "out_4_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuType" is not found in dut, it should satisfy rule "out_4_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_imm" is not found in dut, it should satisfy rule "out_4_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_instr" is not found in dut, it should satisfy rule "out_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isMove" is not found in dut, it should satisfy rule "out_4_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isVset" is not found in dut, it should satisfy rule "out_4_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isXSTrap" is not found in dut, it should satisfy rule "out_4_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lastUop" is not found in dut, it should satisfy rule "out_4_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ldest" is not found in dut, it should satisfy rule "out_4_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_0" is not found in dut, it should satisfy rule "out_4_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_1" is not found in dut, it should satisfy rule "out_4_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_2" is not found in dut, it should satisfy rule "out_4_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_numWB" is not found in dut, it should satisfy rule "out_4_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_pred_taken" is not found in dut, it should satisfy rule "out_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_rfWen" is not found in dut, it should satisfy rule "out_4_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_selImm" is not found in dut, it should satisfy rule "out_4_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_0" is not found in dut, it should satisfy rule "out_4_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_1" is not found in dut, it should satisfy rule "out_4_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_2" is not found in dut, it should satisfy rule "out_4_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_3" is not found in dut, it should satisfy rule "out_4_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_4" is not found in dut, it should satisfy rule "out_4_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_trigger" is not found in dut, it should satisfy rule "out_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopIdx" is not found in dut, it should satisfy rule "out_4_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopSplitType" is not found in dut, it should satisfy rule "out_4_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_v0Wen" is not found in dut, it should satisfy rule "out_4_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vecWen" is not found in dut, it should satisfy rule "out_4_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlWen" is not found in dut, it should satisfy rule "out_4_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlsInstr" is not found in dut, it should satisfy rule "out_4_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_4_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_4_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_4_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_4_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_4_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_4_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_4_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_4_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_4_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_4_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_nf" is not found in dut, it should satisfy rule "out_4_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_veew" is not found in dut, it should satisfy rule "out_4_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vill" is not found in dut, it should satisfy rule "out_4_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_4_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vm" is not found in dut, it should satisfy rule "out_4_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vma" is not found in dut, it should satisfy rule "out_4_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_4_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_4_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vta" is not found in dut, it should satisfy rule "out_4_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_waitForward" is not found in dut, it should satisfy rule "out_4_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_wfflags" is not found in dut, it should satisfy rule "out_4_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_ready" is not found in dut, it should satisfy rule "out_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_valid" is not found in dut, it should satisfy rule "out_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_blockBackward" is not found in dut, it should satisfy rule "out_5_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_canRobCompress" is not found in dut, it should satisfy rule "out_5_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_commitType" is not found in dut, it should satisfy rule "out_5_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_firstUop" is not found in dut, it should satisfy rule "out_5_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_flushPipe" is not found in dut, it should satisfy rule "out_5_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_foldpc" is not found in dut, it should satisfy rule "out_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpWen" is not found in dut, it should satisfy rule "out_5_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_rm" is not found in dut, it should satisfy rule "out_5_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typ" is not found in dut, it should satisfy rule "out_5_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_5_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_5_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqOffset" is not found in dut, it should satisfy rule "out_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuOpType" is not found in dut, it should satisfy rule "out_5_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuType" is not found in dut, it should satisfy rule "out_5_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_imm" is not found in dut, it should satisfy rule "out_5_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_instr" is not found in dut, it should satisfy rule "out_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isMove" is not found in dut, it should satisfy rule "out_5_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isVset" is not found in dut, it should satisfy rule "out_5_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isXSTrap" is not found in dut, it should satisfy rule "out_5_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lastUop" is not found in dut, it should satisfy rule "out_5_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ldest" is not found in dut, it should satisfy rule "out_5_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_0" is not found in dut, it should satisfy rule "out_5_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_1" is not found in dut, it should satisfy rule "out_5_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_2" is not found in dut, it should satisfy rule "out_5_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_numWB" is not found in dut, it should satisfy rule "out_5_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_pred_taken" is not found in dut, it should satisfy rule "out_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_rfWen" is not found in dut, it should satisfy rule "out_5_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_selImm" is not found in dut, it should satisfy rule "out_5_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_0" is not found in dut, it should satisfy rule "out_5_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_1" is not found in dut, it should satisfy rule "out_5_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_2" is not found in dut, it should satisfy rule "out_5_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_3" is not found in dut, it should satisfy rule "out_5_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_4" is not found in dut, it should satisfy rule "out_5_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_trigger" is not found in dut, it should satisfy rule "out_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopIdx" is not found in dut, it should satisfy rule "out_5_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopSplitType" is not found in dut, it should satisfy rule "out_5_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_v0Wen" is not found in dut, it should satisfy rule "out_5_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vecWen" is not found in dut, it should satisfy rule "out_5_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlWen" is not found in dut, it should satisfy rule "out_5_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlsInstr" is not found in dut, it should satisfy rule "out_5_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_5_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_5_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_5_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_5_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_5_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_5_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_5_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_5_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_5_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_5_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_nf" is not found in dut, it should satisfy rule "out_5_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_veew" is not found in dut, it should satisfy rule "out_5_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vill" is not found in dut, it should satisfy rule "out_5_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_5_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vm" is not found in dut, it should satisfy rule "out_5_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vma" is not found in dut, it should satisfy rule "out_5_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_5_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_5_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vta" is not found in dut, it should satisfy rule "out_5_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_waitForward" is not found in dut, it should satisfy rule "out_5_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_wfflags" is not found in dut, it should satisfy rule "out_5_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_ready" is not found in dut, it should satisfy rule "out_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_valid" is not found in dut, it should satisfy rule "out_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_0_value" is not found in dut, it should satisfy rule "perf_0_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_1_value" is not found in dut, it should satisfy rule "perf_1_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_2_value" is not found in dut, it should satisfy rule "perf_2_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_3_value" is not found in dut, it should satisfy rule "perf_3_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "redirect" is not found in dut, it should satisfy rule "redirect"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqOffset" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_value" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_instr" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_valid" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_addr" is not found in dut, it should satisfy rule "vecRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_hold" is not found in dut, it should satisfy rule "vecRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_addr" is not found in dut, it should satisfy rule "vecRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_hold" is not found in dut, it should satisfy rule "vecRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_addr" is not found in dut, it should satisfy rule "vecRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_hold" is not found in dut, it should satisfy rule "vecRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_addr" is not found in dut, it should satisfy rule "vecRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_hold" is not found in dut, it should satisfy rule "vecRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_addr" is not found in dut, it should satisfy rule "vecRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_hold" is not found in dut, it should satisfy rule "vecRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_addr" is not found in dut, it should satisfy rule "vecRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_hold" is not found in dut, it should satisfy rule "vecRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_addr" is not found in dut, it should satisfy rule "vecRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_hold" is not found in dut, it should satisfy rule "vecRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_addr" is not found in dut, it should satisfy rule "vecRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_hold" is not found in dut, it should satisfy rule "vecRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_addr" is not found in dut, it should satisfy rule "vecRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_hold" is not found in dut, it should satisfy rule "vecRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_addr" is not found in dut, it should satisfy rule "vecRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_hold" is not found in dut, it should satisfy rule "vecRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_addr" is not found in dut, it should satisfy rule "vecRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_hold" is not found in dut, it should satisfy rule "vecRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_addr" is not found in dut, it should satisfy rule "vecRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_hold" is not found in dut, it should satisfy rule "vecRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_addr" is not found in dut, it should satisfy rule "vecRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_hold" is not found in dut, it should satisfy rule "vecRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_addr" is not found in dut, it should satisfy rule "vecRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_hold" is not found in dut, it should satisfy rule "vecRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_addr" is not found in dut, it should satisfy rule "vecRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_hold" is not found in dut, it should satisfy rule "vecRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_addr" is not found in dut, it should satisfy rule "vecRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_hold" is not found in dut, it should satisfy rule "vecRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_addr" is not found in dut, it should satisfy rule "vecRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_hold" is not found in dut, it should satisfy rule "vecRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_addr" is not found in dut, it should satisfy rule "vecRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_hold" is not found in dut, it should satisfy rule "vecRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_illegal" is not found in dut, it should satisfy rule "vsetvlVType_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vlmul" is not found in dut, it should satisfy rule "vsetvlVType_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vma" is not found in dut, it should satisfy rule "vsetvlVType_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vsew" is not found in dut, it should satisfy rule "vsetvlVType_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vta" is not found in dut, it should satisfy rule "vsetvlVType_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vstart" is not found in dut, it should satisfy rule "vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "in"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "out_bits"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "csrCtrl_singlestep" is not found in dut, it should satisfy rule "csrCtrl_singlestep"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_addr" is not found in dut, it should satisfy rule "fpRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_hold" is not found in dut, it should satisfy rule "fpRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_addr" is not found in dut, it should satisfy rule "fpRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_hold" is not found in dut, it should satisfy rule "fpRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_addr" is not found in dut, it should satisfy rule "fpRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_hold" is not found in dut, it should satisfy rule "fpRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_addr" is not found in dut, it should satisfy rule "fpRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_hold" is not found in dut, it should satisfy rule "fpRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_addr" is not found in dut, it should satisfy rule "fpRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_hold" is not found in dut, it should satisfy rule "fpRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_addr" is not found in dut, it should satisfy rule "fpRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_hold" is not found in dut, it should satisfy rule "fpRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_addr" is not found in dut, it should satisfy rule "fpRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_hold" is not found in dut, it should satisfy rule "fpRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_addr" is not found in dut, it should satisfy rule "fpRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_hold" is not found in dut, it should satisfy rule "fpRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_addr" is not found in dut, it should satisfy rule "fpRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_hold" is not found in dut, it should satisfy rule "fpRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_addr" is not found in dut, it should satisfy rule "fpRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_hold" is not found in dut, it should satisfy rule "fpRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_addr" is not found in dut, it should satisfy rule "fpRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_hold" is not found in dut, it should satisfy rule "fpRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_addr" is not found in dut, it should satisfy rule "fpRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_hold" is not found in dut, it should satisfy rule "fpRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_addr" is not found in dut, it should satisfy rule "fpRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_hold" is not found in dut, it should satisfy rule "fpRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_addr" is not found in dut, it should satisfy rule "fpRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_hold" is not found in dut, it should satisfy rule "fpRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_addr" is not found in dut, it should satisfy rule "fpRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_hold" is not found in dut, it should satisfy rule "fpRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_addr" is not found in dut, it should satisfy rule "fpRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_hold" is not found in dut, it should satisfy rule "fpRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_addr" is not found in dut, it should satisfy rule "fpRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_hold" is not found in dut, it should satisfy rule "fpRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_addr" is not found in dut, it should satisfy rule "fpRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_hold" is not found in dut, it should satisfy rule "fpRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboCF" is not found in dut, it should satisfy rule "fromCSR_illegalInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboI" is not found in dut, it should satisfy rule "fromCSR_illegalInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboZ" is not found in dut, it should satisfy rule "fromCSR_illegalInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_frm" is not found in dut, it should satisfy rule "fromCSR_illegalInst_frm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_fsIsOff" is not found in dut, it should satisfy rule "fromCSR_illegalInst_fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceGVMA" is not found in dut, it should satisfy rule "fromCSR_illegalInst_hfenceGVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceVVMA" is not found in dut, it should satisfy rule "fromCSR_illegalInst_hfenceVVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hlsv" is not found in dut, it should satisfy rule "fromCSR_illegalInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfencePart" is not found in dut, it should satisfy rule "fromCSR_illegalInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfenceVMA" is not found in dut, it should satisfy rule "fromCSR_illegalInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_vsIsOff" is not found in dut, it should satisfy rule "fromCSR_illegalInst_vsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_wfi" is not found in dut, it should satisfy rule "fromCSR_illegalInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_special_cboI2F" is not found in dut, it should satisfy rule "fromCSR_special_cboI2F"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboCF" is not found in dut, it should satisfy rule "fromCSR_virtualInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboI" is not found in dut, it should satisfy rule "fromCSR_virtualInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboZ" is not found in dut, it should satisfy rule "fromCSR_virtualInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hfence" is not found in dut, it should satisfy rule "fromCSR_virtualInst_hfence"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hlsv" is not found in dut, it should satisfy rule "fromCSR_virtualInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfencePart" is not found in dut, it should satisfy rule "fromCSR_virtualInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfenceVMA" is not found in dut, it should satisfy rule "fromCSR_virtualInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_wfi" is not found in dut, it should satisfy rule "fromCSR_virtualInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_hasVsetvl" is not found in dut, it should satisfy rule "fromRob_commitVType_hasVsetvl"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_illegal" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vlmul" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vma" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vsew" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vta" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_valid" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_isResumeVType" is not found in dut, it should satisfy rule "fromRob_isResumeVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkToArchVType" is not found in dut, it should satisfy rule "fromRob_walkToArchVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_illegal" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vlmul" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vma" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vsew" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vta" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_valid" is not found in dut, it should satisfy rule "fromRob_walkVType_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_0" is not found in dut, it should satisfy rule "fusion_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_1" is not found in dut, it should satisfy rule "fusion_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_2" is not found in dut, it should satisfy rule "fusion_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_3" is not found in dut, it should satisfy rule "fusion_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_4" is not found in dut, it should satisfy rule "fusion_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_foldpc" is not found in dut, it should satisfy rule "in_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqOffset" is not found in dut, it should satisfy rule "in_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_instr" is not found in dut, it should satisfy rule "in_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_0_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_pred_taken" is not found in dut, it should satisfy rule "in_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_trigger" is not found in dut, it should satisfy rule "in_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_ready" is not found in dut, it should satisfy rule "in_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_valid" is not found in dut, it should satisfy rule "in_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_foldpc" is not found in dut, it should satisfy rule "in_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqOffset" is not found in dut, it should satisfy rule "in_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_instr" is not found in dut, it should satisfy rule "in_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_1_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_pred_taken" is not found in dut, it should satisfy rule "in_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_trigger" is not found in dut, it should satisfy rule "in_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_ready" is not found in dut, it should satisfy rule "in_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_valid" is not found in dut, it should satisfy rule "in_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_foldpc" is not found in dut, it should satisfy rule "in_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqOffset" is not found in dut, it should satisfy rule "in_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_instr" is not found in dut, it should satisfy rule "in_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_2_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_pred_taken" is not found in dut, it should satisfy rule "in_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_trigger" is not found in dut, it should satisfy rule "in_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_ready" is not found in dut, it should satisfy rule "in_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_valid" is not found in dut, it should satisfy rule "in_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_foldpc" is not found in dut, it should satisfy rule "in_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqOffset" is not found in dut, it should satisfy rule "in_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_instr" is not found in dut, it should satisfy rule "in_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_3_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_pred_taken" is not found in dut, it should satisfy rule "in_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_trigger" is not found in dut, it should satisfy rule "in_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_ready" is not found in dut, it should satisfy rule "in_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_valid" is not found in dut, it should satisfy rule "in_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_foldpc" is not found in dut, it should satisfy rule "in_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqOffset" is not found in dut, it should satisfy rule "in_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_instr" is not found in dut, it should satisfy rule "in_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_4_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_pred_taken" is not found in dut, it should satisfy rule "in_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_trigger" is not found in dut, it should satisfy rule "in_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_ready" is not found in dut, it should satisfy rule "in_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_valid" is not found in dut, it should satisfy rule "in_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_foldpc" is not found in dut, it should satisfy rule "in_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqOffset" is not found in dut, it should satisfy rule "in_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_instr" is not found in dut, it should satisfy rule "in_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_5_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_pred_taken" is not found in dut, it should satisfy rule "in_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_trigger" is not found in dut, it should satisfy rule "in_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_ready" is not found in dut, it should satisfy rule "in_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_valid" is not found in dut, it should satisfy rule "in_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_addr" is not found in dut, it should satisfy rule "intRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_hold" is not found in dut, it should satisfy rule "intRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_addr" is not found in dut, it should satisfy rule "intRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_hold" is not found in dut, it should satisfy rule "intRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_addr" is not found in dut, it should satisfy rule "intRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_hold" is not found in dut, it should satisfy rule "intRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_addr" is not found in dut, it should satisfy rule "intRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_hold" is not found in dut, it should satisfy rule "intRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_addr" is not found in dut, it should satisfy rule "intRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_hold" is not found in dut, it should satisfy rule "intRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_addr" is not found in dut, it should satisfy rule "intRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_hold" is not found in dut, it should satisfy rule "intRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_addr" is not found in dut, it should satisfy rule "intRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_hold" is not found in dut, it should satisfy rule "intRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_addr" is not found in dut, it should satisfy rule "intRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_hold" is not found in dut, it should satisfy rule "intRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_addr" is not found in dut, it should satisfy rule "intRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_hold" is not found in dut, it should satisfy rule "intRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_addr" is not found in dut, it should satisfy rule "intRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_hold" is not found in dut, it should satisfy rule "intRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_addr" is not found in dut, it should satisfy rule "intRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_hold" is not found in dut, it should satisfy rule "intRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_addr" is not found in dut, it should satisfy rule "intRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_hold" is not found in dut, it should satisfy rule "intRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_blockBackward" is not found in dut, it should satisfy rule "out_0_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_canRobCompress" is not found in dut, it should satisfy rule "out_0_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_commitType" is not found in dut, it should satisfy rule "out_0_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_firstUop" is not found in dut, it should satisfy rule "out_0_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_flushPipe" is not found in dut, it should satisfy rule "out_0_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_foldpc" is not found in dut, it should satisfy rule "out_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpWen" is not found in dut, it should satisfy rule "out_0_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_rm" is not found in dut, it should satisfy rule "out_0_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typ" is not found in dut, it should satisfy rule "out_0_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_0_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_0_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqOffset" is not found in dut, it should satisfy rule "out_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuOpType" is not found in dut, it should satisfy rule "out_0_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuType" is not found in dut, it should satisfy rule "out_0_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_imm" is not found in dut, it should satisfy rule "out_0_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_instr" is not found in dut, it should satisfy rule "out_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isMove" is not found in dut, it should satisfy rule "out_0_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isVset" is not found in dut, it should satisfy rule "out_0_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isXSTrap" is not found in dut, it should satisfy rule "out_0_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lastUop" is not found in dut, it should satisfy rule "out_0_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ldest" is not found in dut, it should satisfy rule "out_0_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_0" is not found in dut, it should satisfy rule "out_0_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_1" is not found in dut, it should satisfy rule "out_0_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_2" is not found in dut, it should satisfy rule "out_0_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_numWB" is not found in dut, it should satisfy rule "out_0_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_pred_taken" is not found in dut, it should satisfy rule "out_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_rfWen" is not found in dut, it should satisfy rule "out_0_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_selImm" is not found in dut, it should satisfy rule "out_0_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_0" is not found in dut, it should satisfy rule "out_0_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_1" is not found in dut, it should satisfy rule "out_0_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_2" is not found in dut, it should satisfy rule "out_0_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_3" is not found in dut, it should satisfy rule "out_0_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_4" is not found in dut, it should satisfy rule "out_0_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_trigger" is not found in dut, it should satisfy rule "out_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopIdx" is not found in dut, it should satisfy rule "out_0_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopSplitType" is not found in dut, it should satisfy rule "out_0_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_v0Wen" is not found in dut, it should satisfy rule "out_0_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vecWen" is not found in dut, it should satisfy rule "out_0_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlWen" is not found in dut, it should satisfy rule "out_0_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlsInstr" is not found in dut, it should satisfy rule "out_0_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_0_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_0_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_0_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_0_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_0_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_0_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_0_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_0_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_0_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_0_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_nf" is not found in dut, it should satisfy rule "out_0_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_veew" is not found in dut, it should satisfy rule "out_0_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vill" is not found in dut, it should satisfy rule "out_0_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_0_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vm" is not found in dut, it should satisfy rule "out_0_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vma" is not found in dut, it should satisfy rule "out_0_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_0_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_0_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vta" is not found in dut, it should satisfy rule "out_0_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_waitForward" is not found in dut, it should satisfy rule "out_0_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_wfflags" is not found in dut, it should satisfy rule "out_0_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_ready" is not found in dut, it should satisfy rule "out_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_valid" is not found in dut, it should satisfy rule "out_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_blockBackward" is not found in dut, it should satisfy rule "out_1_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_canRobCompress" is not found in dut, it should satisfy rule "out_1_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_commitType" is not found in dut, it should satisfy rule "out_1_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_firstUop" is not found in dut, it should satisfy rule "out_1_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_flushPipe" is not found in dut, it should satisfy rule "out_1_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_foldpc" is not found in dut, it should satisfy rule "out_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpWen" is not found in dut, it should satisfy rule "out_1_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_rm" is not found in dut, it should satisfy rule "out_1_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typ" is not found in dut, it should satisfy rule "out_1_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_1_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_1_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqOffset" is not found in dut, it should satisfy rule "out_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuOpType" is not found in dut, it should satisfy rule "out_1_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuType" is not found in dut, it should satisfy rule "out_1_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_imm" is not found in dut, it should satisfy rule "out_1_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_instr" is not found in dut, it should satisfy rule "out_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isMove" is not found in dut, it should satisfy rule "out_1_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isVset" is not found in dut, it should satisfy rule "out_1_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isXSTrap" is not found in dut, it should satisfy rule "out_1_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lastUop" is not found in dut, it should satisfy rule "out_1_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ldest" is not found in dut, it should satisfy rule "out_1_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_0" is not found in dut, it should satisfy rule "out_1_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_1" is not found in dut, it should satisfy rule "out_1_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_2" is not found in dut, it should satisfy rule "out_1_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_numWB" is not found in dut, it should satisfy rule "out_1_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_pred_taken" is not found in dut, it should satisfy rule "out_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_rfWen" is not found in dut, it should satisfy rule "out_1_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_selImm" is not found in dut, it should satisfy rule "out_1_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_0" is not found in dut, it should satisfy rule "out_1_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_1" is not found in dut, it should satisfy rule "out_1_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_2" is not found in dut, it should satisfy rule "out_1_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_3" is not found in dut, it should satisfy rule "out_1_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_4" is not found in dut, it should satisfy rule "out_1_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_trigger" is not found in dut, it should satisfy rule "out_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopIdx" is not found in dut, it should satisfy rule "out_1_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopSplitType" is not found in dut, it should satisfy rule "out_1_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_v0Wen" is not found in dut, it should satisfy rule "out_1_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vecWen" is not found in dut, it should satisfy rule "out_1_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlWen" is not found in dut, it should satisfy rule "out_1_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlsInstr" is not found in dut, it should satisfy rule "out_1_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_1_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_1_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_1_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_1_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_1_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_1_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_1_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_1_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_1_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_1_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_nf" is not found in dut, it should satisfy rule "out_1_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_veew" is not found in dut, it should satisfy rule "out_1_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vill" is not found in dut, it should satisfy rule "out_1_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_1_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vm" is not found in dut, it should satisfy rule "out_1_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vma" is not found in dut, it should satisfy rule "out_1_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_1_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_1_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vta" is not found in dut, it should satisfy rule "out_1_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_waitForward" is not found in dut, it should satisfy rule "out_1_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_wfflags" is not found in dut, it should satisfy rule "out_1_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_ready" is not found in dut, it should satisfy rule "out_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_valid" is not found in dut, it should satisfy rule "out_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_blockBackward" is not found in dut, it should satisfy rule "out_2_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_canRobCompress" is not found in dut, it should satisfy rule "out_2_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_commitType" is not found in dut, it should satisfy rule "out_2_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_firstUop" is not found in dut, it should satisfy rule "out_2_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_flushPipe" is not found in dut, it should satisfy rule "out_2_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_foldpc" is not found in dut, it should satisfy rule "out_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpWen" is not found in dut, it should satisfy rule "out_2_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_rm" is not found in dut, it should satisfy rule "out_2_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typ" is not found in dut, it should satisfy rule "out_2_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_2_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_2_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqOffset" is not found in dut, it should satisfy rule "out_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuOpType" is not found in dut, it should satisfy rule "out_2_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuType" is not found in dut, it should satisfy rule "out_2_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_imm" is not found in dut, it should satisfy rule "out_2_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_instr" is not found in dut, it should satisfy rule "out_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isMove" is not found in dut, it should satisfy rule "out_2_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isVset" is not found in dut, it should satisfy rule "out_2_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isXSTrap" is not found in dut, it should satisfy rule "out_2_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lastUop" is not found in dut, it should satisfy rule "out_2_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ldest" is not found in dut, it should satisfy rule "out_2_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_0" is not found in dut, it should satisfy rule "out_2_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_1" is not found in dut, it should satisfy rule "out_2_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_2" is not found in dut, it should satisfy rule "out_2_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_numWB" is not found in dut, it should satisfy rule "out_2_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_pred_taken" is not found in dut, it should satisfy rule "out_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_rfWen" is not found in dut, it should satisfy rule "out_2_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_selImm" is not found in dut, it should satisfy rule "out_2_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_0" is not found in dut, it should satisfy rule "out_2_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_1" is not found in dut, it should satisfy rule "out_2_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_2" is not found in dut, it should satisfy rule "out_2_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_3" is not found in dut, it should satisfy rule "out_2_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_4" is not found in dut, it should satisfy rule "out_2_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_trigger" is not found in dut, it should satisfy rule "out_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopIdx" is not found in dut, it should satisfy rule "out_2_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopSplitType" is not found in dut, it should satisfy rule "out_2_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_v0Wen" is not found in dut, it should satisfy rule "out_2_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vecWen" is not found in dut, it should satisfy rule "out_2_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlWen" is not found in dut, it should satisfy rule "out_2_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlsInstr" is not found in dut, it should satisfy rule "out_2_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_2_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_2_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_2_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_2_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_2_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_2_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_2_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_2_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_2_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_2_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_nf" is not found in dut, it should satisfy rule "out_2_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_veew" is not found in dut, it should satisfy rule "out_2_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vill" is not found in dut, it should satisfy rule "out_2_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_2_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vm" is not found in dut, it should satisfy rule "out_2_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vma" is not found in dut, it should satisfy rule "out_2_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_2_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_2_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vta" is not found in dut, it should satisfy rule "out_2_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_waitForward" is not found in dut, it should satisfy rule "out_2_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_wfflags" is not found in dut, it should satisfy rule "out_2_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_ready" is not found in dut, it should satisfy rule "out_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_valid" is not found in dut, it should satisfy rule "out_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_blockBackward" is not found in dut, it should satisfy rule "out_3_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_canRobCompress" is not found in dut, it should satisfy rule "out_3_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_commitType" is not found in dut, it should satisfy rule "out_3_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_firstUop" is not found in dut, it should satisfy rule "out_3_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_flushPipe" is not found in dut, it should satisfy rule "out_3_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_foldpc" is not found in dut, it should satisfy rule "out_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpWen" is not found in dut, it should satisfy rule "out_3_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_rm" is not found in dut, it should satisfy rule "out_3_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typ" is not found in dut, it should satisfy rule "out_3_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_3_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_3_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqOffset" is not found in dut, it should satisfy rule "out_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuOpType" is not found in dut, it should satisfy rule "out_3_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuType" is not found in dut, it should satisfy rule "out_3_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_imm" is not found in dut, it should satisfy rule "out_3_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_instr" is not found in dut, it should satisfy rule "out_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isMove" is not found in dut, it should satisfy rule "out_3_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isVset" is not found in dut, it should satisfy rule "out_3_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isXSTrap" is not found in dut, it should satisfy rule "out_3_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lastUop" is not found in dut, it should satisfy rule "out_3_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ldest" is not found in dut, it should satisfy rule "out_3_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_0" is not found in dut, it should satisfy rule "out_3_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_1" is not found in dut, it should satisfy rule "out_3_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_2" is not found in dut, it should satisfy rule "out_3_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_numWB" is not found in dut, it should satisfy rule "out_3_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_pred_taken" is not found in dut, it should satisfy rule "out_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_rfWen" is not found in dut, it should satisfy rule "out_3_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_selImm" is not found in dut, it should satisfy rule "out_3_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_0" is not found in dut, it should satisfy rule "out_3_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_1" is not found in dut, it should satisfy rule "out_3_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_2" is not found in dut, it should satisfy rule "out_3_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_3" is not found in dut, it should satisfy rule "out_3_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_4" is not found in dut, it should satisfy rule "out_3_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_trigger" is not found in dut, it should satisfy rule "out_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopIdx" is not found in dut, it should satisfy rule "out_3_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopSplitType" is not found in dut, it should satisfy rule "out_3_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_v0Wen" is not found in dut, it should satisfy rule "out_3_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vecWen" is not found in dut, it should satisfy rule "out_3_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlWen" is not found in dut, it should satisfy rule "out_3_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlsInstr" is not found in dut, it should satisfy rule "out_3_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_3_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_3_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_3_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_3_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_3_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_3_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_3_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_3_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_3_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_3_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_nf" is not found in dut, it should satisfy rule "out_3_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_veew" is not found in dut, it should satisfy rule "out_3_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vill" is not found in dut, it should satisfy rule "out_3_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_3_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vm" is not found in dut, it should satisfy rule "out_3_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vma" is not found in dut, it should satisfy rule "out_3_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_3_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_3_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vta" is not found in dut, it should satisfy rule "out_3_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_waitForward" is not found in dut, it should satisfy rule "out_3_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_wfflags" is not found in dut, it should satisfy rule "out_3_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_ready" is not found in dut, it should satisfy rule "out_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_valid" is not found in dut, it should satisfy rule "out_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_blockBackward" is not found in dut, it should satisfy rule "out_4_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_canRobCompress" is not found in dut, it should satisfy rule "out_4_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_commitType" is not found in dut, it should satisfy rule "out_4_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_firstUop" is not found in dut, it should satisfy rule "out_4_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_flushPipe" is not found in dut, it should satisfy rule "out_4_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_foldpc" is not found in dut, it should satisfy rule "out_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpWen" is not found in dut, it should satisfy rule "out_4_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_rm" is not found in dut, it should satisfy rule "out_4_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typ" is not found in dut, it should satisfy rule "out_4_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_4_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_4_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqOffset" is not found in dut, it should satisfy rule "out_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuOpType" is not found in dut, it should satisfy rule "out_4_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuType" is not found in dut, it should satisfy rule "out_4_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_imm" is not found in dut, it should satisfy rule "out_4_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_instr" is not found in dut, it should satisfy rule "out_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isMove" is not found in dut, it should satisfy rule "out_4_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isVset" is not found in dut, it should satisfy rule "out_4_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isXSTrap" is not found in dut, it should satisfy rule "out_4_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lastUop" is not found in dut, it should satisfy rule "out_4_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ldest" is not found in dut, it should satisfy rule "out_4_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_0" is not found in dut, it should satisfy rule "out_4_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_1" is not found in dut, it should satisfy rule "out_4_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_2" is not found in dut, it should satisfy rule "out_4_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_numWB" is not found in dut, it should satisfy rule "out_4_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_pred_taken" is not found in dut, it should satisfy rule "out_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_rfWen" is not found in dut, it should satisfy rule "out_4_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_selImm" is not found in dut, it should satisfy rule "out_4_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_0" is not found in dut, it should satisfy rule "out_4_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_1" is not found in dut, it should satisfy rule "out_4_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_2" is not found in dut, it should satisfy rule "out_4_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_3" is not found in dut, it should satisfy rule "out_4_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_4" is not found in dut, it should satisfy rule "out_4_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_trigger" is not found in dut, it should satisfy rule "out_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopIdx" is not found in dut, it should satisfy rule "out_4_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopSplitType" is not found in dut, it should satisfy rule "out_4_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_v0Wen" is not found in dut, it should satisfy rule "out_4_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vecWen" is not found in dut, it should satisfy rule "out_4_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlWen" is not found in dut, it should satisfy rule "out_4_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlsInstr" is not found in dut, it should satisfy rule "out_4_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_4_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_4_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_4_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_4_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_4_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_4_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_4_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_4_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_4_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_4_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_nf" is not found in dut, it should satisfy rule "out_4_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_veew" is not found in dut, it should satisfy rule "out_4_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vill" is not found in dut, it should satisfy rule "out_4_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_4_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vm" is not found in dut, it should satisfy rule "out_4_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vma" is not found in dut, it should satisfy rule "out_4_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_4_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_4_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vta" is not found in dut, it should satisfy rule "out_4_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_waitForward" is not found in dut, it should satisfy rule "out_4_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_wfflags" is not found in dut, it should satisfy rule "out_4_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_ready" is not found in dut, it should satisfy rule "out_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_valid" is not found in dut, it should satisfy rule "out_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_blockBackward" is not found in dut, it should satisfy rule "out_5_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_canRobCompress" is not found in dut, it should satisfy rule "out_5_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_commitType" is not found in dut, it should satisfy rule "out_5_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_firstUop" is not found in dut, it should satisfy rule "out_5_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_flushPipe" is not found in dut, it should satisfy rule "out_5_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_foldpc" is not found in dut, it should satisfy rule "out_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpWen" is not found in dut, it should satisfy rule "out_5_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_rm" is not found in dut, it should satisfy rule "out_5_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typ" is not found in dut, it should satisfy rule "out_5_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_5_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_5_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqOffset" is not found in dut, it should satisfy rule "out_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuOpType" is not found in dut, it should satisfy rule "out_5_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuType" is not found in dut, it should satisfy rule "out_5_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_imm" is not found in dut, it should satisfy rule "out_5_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_instr" is not found in dut, it should satisfy rule "out_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isMove" is not found in dut, it should satisfy rule "out_5_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isVset" is not found in dut, it should satisfy rule "out_5_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isXSTrap" is not found in dut, it should satisfy rule "out_5_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lastUop" is not found in dut, it should satisfy rule "out_5_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ldest" is not found in dut, it should satisfy rule "out_5_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_0" is not found in dut, it should satisfy rule "out_5_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_1" is not found in dut, it should satisfy rule "out_5_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_2" is not found in dut, it should satisfy rule "out_5_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_numWB" is not found in dut, it should satisfy rule "out_5_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_pred_taken" is not found in dut, it should satisfy rule "out_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_rfWen" is not found in dut, it should satisfy rule "out_5_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_selImm" is not found in dut, it should satisfy rule "out_5_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_0" is not found in dut, it should satisfy rule "out_5_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_1" is not found in dut, it should satisfy rule "out_5_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_2" is not found in dut, it should satisfy rule "out_5_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_3" is not found in dut, it should satisfy rule "out_5_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_4" is not found in dut, it should satisfy rule "out_5_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_trigger" is not found in dut, it should satisfy rule "out_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopIdx" is not found in dut, it should satisfy rule "out_5_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopSplitType" is not found in dut, it should satisfy rule "out_5_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_v0Wen" is not found in dut, it should satisfy rule "out_5_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vecWen" is not found in dut, it should satisfy rule "out_5_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlWen" is not found in dut, it should satisfy rule "out_5_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlsInstr" is not found in dut, it should satisfy rule "out_5_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_5_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_5_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_5_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_5_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_5_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_5_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_5_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_5_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_5_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_5_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_nf" is not found in dut, it should satisfy rule "out_5_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_veew" is not found in dut, it should satisfy rule "out_5_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vill" is not found in dut, it should satisfy rule "out_5_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_5_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vm" is not found in dut, it should satisfy rule "out_5_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vma" is not found in dut, it should satisfy rule "out_5_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_5_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_5_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vta" is not found in dut, it should satisfy rule "out_5_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_waitForward" is not found in dut, it should satisfy rule "out_5_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_wfflags" is not found in dut, it should satisfy rule "out_5_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_ready" is not found in dut, it should satisfy rule "out_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_valid" is not found in dut, it should satisfy rule "out_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_0_value" is not found in dut, it should satisfy rule "perf_0_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_1_value" is not found in dut, it should satisfy rule "perf_1_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_2_value" is not found in dut, it should satisfy rule "perf_2_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_3_value" is not found in dut, it should satisfy rule "perf_3_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "redirect" is not found in dut, it should satisfy rule "redirect"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqOffset" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_value" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_instr" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_valid" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_addr" is not found in dut, it should satisfy rule "vecRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_hold" is not found in dut, it should satisfy rule "vecRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_addr" is not found in dut, it should satisfy rule "vecRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_hold" is not found in dut, it should satisfy rule "vecRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_addr" is not found in dut, it should satisfy rule "vecRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_hold" is not found in dut, it should satisfy rule "vecRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_addr" is not found in dut, it should satisfy rule "vecRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_hold" is not found in dut, it should satisfy rule "vecRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_addr" is not found in dut, it should satisfy rule "vecRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_hold" is not found in dut, it should satisfy rule "vecRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_addr" is not found in dut, it should satisfy rule "vecRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_hold" is not found in dut, it should satisfy rule "vecRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_addr" is not found in dut, it should satisfy rule "vecRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_hold" is not found in dut, it should satisfy rule "vecRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_addr" is not found in dut, it should satisfy rule "vecRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_hold" is not found in dut, it should satisfy rule "vecRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_addr" is not found in dut, it should satisfy rule "vecRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_hold" is not found in dut, it should satisfy rule "vecRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_addr" is not found in dut, it should satisfy rule "vecRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_hold" is not found in dut, it should satisfy rule "vecRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_addr" is not found in dut, it should satisfy rule "vecRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_hold" is not found in dut, it should satisfy rule "vecRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_addr" is not found in dut, it should satisfy rule "vecRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_hold" is not found in dut, it should satisfy rule "vecRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_addr" is not found in dut, it should satisfy rule "vecRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_hold" is not found in dut, it should satisfy rule "vecRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_addr" is not found in dut, it should satisfy rule "vecRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_hold" is not found in dut, it should satisfy rule "vecRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_addr" is not found in dut, it should satisfy rule "vecRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_hold" is not found in dut, it should satisfy rule "vecRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_addr" is not found in dut, it should satisfy rule "vecRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_hold" is not found in dut, it should satisfy rule "vecRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_addr" is not found in dut, it should satisfy rule "vecRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_hold" is not found in dut, it should satisfy rule "vecRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_addr" is not found in dut, it should satisfy rule "vecRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_hold" is not found in dut, it should satisfy rule "vecRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_illegal" is not found in dut, it should satisfy rule "vsetvlVType_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vlmul" is not found in dut, it should satisfy rule "vsetvlVType_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vma" is not found in dut, it should satisfy rule "vsetvlVType_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vsew" is not found in dut, it should satisfy rule "vsetvlVType_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vta" is not found in dut, it should satisfy rule "vsetvlVType_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vstart" is not found in dut, it should satisfy rule "vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "in"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "out_bits"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "csrCtrl_singlestep" is not found in dut, it should satisfy rule "csrCtrl_singlestep"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_addr" is not found in dut, it should satisfy rule "fpRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_hold" is not found in dut, it should satisfy rule "fpRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_addr" is not found in dut, it should satisfy rule "fpRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_hold" is not found in dut, it should satisfy rule "fpRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_addr" is not found in dut, it should satisfy rule "fpRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_hold" is not found in dut, it should satisfy rule "fpRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_addr" is not found in dut, it should satisfy rule "fpRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_hold" is not found in dut, it should satisfy rule "fpRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_addr" is not found in dut, it should satisfy rule "fpRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_hold" is not found in dut, it should satisfy rule "fpRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_addr" is not found in dut, it should satisfy rule "fpRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_hold" is not found in dut, it should satisfy rule "fpRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_addr" is not found in dut, it should satisfy rule "fpRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_hold" is not found in dut, it should satisfy rule "fpRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_addr" is not found in dut, it should satisfy rule "fpRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_hold" is not found in dut, it should satisfy rule "fpRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_addr" is not found in dut, it should satisfy rule "fpRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_hold" is not found in dut, it should satisfy rule "fpRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_addr" is not found in dut, it should satisfy rule "fpRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_hold" is not found in dut, it should satisfy rule "fpRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_addr" is not found in dut, it should satisfy rule "fpRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_hold" is not found in dut, it should satisfy rule "fpRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_addr" is not found in dut, it should satisfy rule "fpRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_hold" is not found in dut, it should satisfy rule "fpRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_addr" is not found in dut, it should satisfy rule "fpRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_hold" is not found in dut, it should satisfy rule "fpRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_addr" is not found in dut, it should satisfy rule "fpRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_hold" is not found in dut, it should satisfy rule "fpRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_addr" is not found in dut, it should satisfy rule "fpRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_hold" is not found in dut, it should satisfy rule "fpRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_addr" is not found in dut, it should satisfy rule "fpRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_hold" is not found in dut, it should satisfy rule "fpRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_addr" is not found in dut, it should satisfy rule "fpRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_hold" is not found in dut, it should satisfy rule "fpRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_addr" is not found in dut, it should satisfy rule "fpRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_hold" is not found in dut, it should satisfy rule "fpRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboCF" is not found in dut, it should satisfy rule "fromCSR_illegalInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboI" is not found in dut, it should satisfy rule "fromCSR_illegalInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboZ" is not found in dut, it should satisfy rule "fromCSR_illegalInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_frm" is not found in dut, it should satisfy rule "fromCSR_illegalInst_frm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_fsIsOff" is not found in dut, it should satisfy rule "fromCSR_illegalInst_fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceGVMA" is not found in dut, it should satisfy rule "fromCSR_illegalInst_hfenceGVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceVVMA" is not found in dut, it should satisfy rule "fromCSR_illegalInst_hfenceVVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hlsv" is not found in dut, it should satisfy rule "fromCSR_illegalInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfencePart" is not found in dut, it should satisfy rule "fromCSR_illegalInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfenceVMA" is not found in dut, it should satisfy rule "fromCSR_illegalInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_vsIsOff" is not found in dut, it should satisfy rule "fromCSR_illegalInst_vsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_wfi" is not found in dut, it should satisfy rule "fromCSR_illegalInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_special_cboI2F" is not found in dut, it should satisfy rule "fromCSR_special_cboI2F"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboCF" is not found in dut, it should satisfy rule "fromCSR_virtualInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboI" is not found in dut, it should satisfy rule "fromCSR_virtualInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboZ" is not found in dut, it should satisfy rule "fromCSR_virtualInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hfence" is not found in dut, it should satisfy rule "fromCSR_virtualInst_hfence"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hlsv" is not found in dut, it should satisfy rule "fromCSR_virtualInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfencePart" is not found in dut, it should satisfy rule "fromCSR_virtualInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfenceVMA" is not found in dut, it should satisfy rule "fromCSR_virtualInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_wfi" is not found in dut, it should satisfy rule "fromCSR_virtualInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_hasVsetvl" is not found in dut, it should satisfy rule "fromRob_commitVType_hasVsetvl"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_illegal" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vlmul" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vma" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vsew" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vta" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_valid" is not found in dut, it should satisfy rule "fromRob_commitVType_vtype_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_isResumeVType" is not found in dut, it should satisfy rule "fromRob_isResumeVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkToArchVType" is not found in dut, it should satisfy rule "fromRob_walkToArchVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_illegal" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vlmul" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vma" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vsew" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vta" is not found in dut, it should satisfy rule "fromRob_walkVType_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_valid" is not found in dut, it should satisfy rule "fromRob_walkVType_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_0" is not found in dut, it should satisfy rule "fusion_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_1" is not found in dut, it should satisfy rule "fusion_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_2" is not found in dut, it should satisfy rule "fusion_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_3" is not found in dut, it should satisfy rule "fusion_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_4" is not found in dut, it should satisfy rule "fusion_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_foldpc" is not found in dut, it should satisfy rule "in_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqOffset" is not found in dut, it should satisfy rule "in_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_instr" is not found in dut, it should satisfy rule "in_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_0_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_pred_taken" is not found in dut, it should satisfy rule "in_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_trigger" is not found in dut, it should satisfy rule "in_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_ready" is not found in dut, it should satisfy rule "in_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_valid" is not found in dut, it should satisfy rule "in_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_foldpc" is not found in dut, it should satisfy rule "in_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqOffset" is not found in dut, it should satisfy rule "in_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_instr" is not found in dut, it should satisfy rule "in_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_1_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_pred_taken" is not found in dut, it should satisfy rule "in_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_trigger" is not found in dut, it should satisfy rule "in_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_ready" is not found in dut, it should satisfy rule "in_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_valid" is not found in dut, it should satisfy rule "in_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_foldpc" is not found in dut, it should satisfy rule "in_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqOffset" is not found in dut, it should satisfy rule "in_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_instr" is not found in dut, it should satisfy rule "in_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_2_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_pred_taken" is not found in dut, it should satisfy rule "in_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_trigger" is not found in dut, it should satisfy rule "in_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_ready" is not found in dut, it should satisfy rule "in_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_valid" is not found in dut, it should satisfy rule "in_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_foldpc" is not found in dut, it should satisfy rule "in_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqOffset" is not found in dut, it should satisfy rule "in_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_instr" is not found in dut, it should satisfy rule "in_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_3_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_pred_taken" is not found in dut, it should satisfy rule "in_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_trigger" is not found in dut, it should satisfy rule "in_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_ready" is not found in dut, it should satisfy rule "in_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_valid" is not found in dut, it should satisfy rule "in_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_foldpc" is not found in dut, it should satisfy rule "in_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqOffset" is not found in dut, it should satisfy rule "in_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_instr" is not found in dut, it should satisfy rule "in_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_4_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_pred_taken" is not found in dut, it should satisfy rule "in_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_trigger" is not found in dut, it should satisfy rule "in_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_ready" is not found in dut, it should satisfy rule "in_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_valid" is not found in dut, it should satisfy rule "in_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "in_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "in_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_foldpc" is not found in dut, it should satisfy rule "in_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqOffset" is not found in dut, it should satisfy rule "in_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "in_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "in_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_instr" is not found in dut, it should satisfy rule "in_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "in_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "in_5_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "in_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "in_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_pred_taken" is not found in dut, it should satisfy rule "in_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_trigger" is not found in dut, it should satisfy rule "in_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_ready" is not found in dut, it should satisfy rule "in_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_valid" is not found in dut, it should satisfy rule "in_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_addr" is not found in dut, it should satisfy rule "intRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_hold" is not found in dut, it should satisfy rule "intRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_addr" is not found in dut, it should satisfy rule "intRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_hold" is not found in dut, it should satisfy rule "intRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_addr" is not found in dut, it should satisfy rule "intRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_hold" is not found in dut, it should satisfy rule "intRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_addr" is not found in dut, it should satisfy rule "intRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_hold" is not found in dut, it should satisfy rule "intRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_addr" is not found in dut, it should satisfy rule "intRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_hold" is not found in dut, it should satisfy rule "intRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_addr" is not found in dut, it should satisfy rule "intRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_hold" is not found in dut, it should satisfy rule "intRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_addr" is not found in dut, it should satisfy rule "intRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_hold" is not found in dut, it should satisfy rule "intRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_addr" is not found in dut, it should satisfy rule "intRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_hold" is not found in dut, it should satisfy rule "intRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_addr" is not found in dut, it should satisfy rule "intRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_hold" is not found in dut, it should satisfy rule "intRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_addr" is not found in dut, it should satisfy rule "intRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_hold" is not found in dut, it should satisfy rule "intRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_addr" is not found in dut, it should satisfy rule "intRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_hold" is not found in dut, it should satisfy rule "intRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_addr" is not found in dut, it should satisfy rule "intRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_hold" is not found in dut, it should satisfy rule "intRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_blockBackward" is not found in dut, it should satisfy rule "out_0_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_canRobCompress" is not found in dut, it should satisfy rule "out_0_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_commitType" is not found in dut, it should satisfy rule "out_0_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_firstUop" is not found in dut, it should satisfy rule "out_0_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_flushPipe" is not found in dut, it should satisfy rule "out_0_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_foldpc" is not found in dut, it should satisfy rule "out_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpWen" is not found in dut, it should satisfy rule "out_0_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_rm" is not found in dut, it should satisfy rule "out_0_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typ" is not found in dut, it should satisfy rule "out_0_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_0_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_0_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqOffset" is not found in dut, it should satisfy rule "out_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuOpType" is not found in dut, it should satisfy rule "out_0_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuType" is not found in dut, it should satisfy rule "out_0_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_imm" is not found in dut, it should satisfy rule "out_0_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_instr" is not found in dut, it should satisfy rule "out_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isMove" is not found in dut, it should satisfy rule "out_0_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isVset" is not found in dut, it should satisfy rule "out_0_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isXSTrap" is not found in dut, it should satisfy rule "out_0_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lastUop" is not found in dut, it should satisfy rule "out_0_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ldest" is not found in dut, it should satisfy rule "out_0_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_0" is not found in dut, it should satisfy rule "out_0_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_1" is not found in dut, it should satisfy rule "out_0_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_2" is not found in dut, it should satisfy rule "out_0_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_numWB" is not found in dut, it should satisfy rule "out_0_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_pred_taken" is not found in dut, it should satisfy rule "out_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_rfWen" is not found in dut, it should satisfy rule "out_0_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_selImm" is not found in dut, it should satisfy rule "out_0_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_0" is not found in dut, it should satisfy rule "out_0_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_1" is not found in dut, it should satisfy rule "out_0_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_2" is not found in dut, it should satisfy rule "out_0_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_3" is not found in dut, it should satisfy rule "out_0_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_4" is not found in dut, it should satisfy rule "out_0_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_trigger" is not found in dut, it should satisfy rule "out_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopIdx" is not found in dut, it should satisfy rule "out_0_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopSplitType" is not found in dut, it should satisfy rule "out_0_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_v0Wen" is not found in dut, it should satisfy rule "out_0_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vecWen" is not found in dut, it should satisfy rule "out_0_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlWen" is not found in dut, it should satisfy rule "out_0_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlsInstr" is not found in dut, it should satisfy rule "out_0_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_0_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_0_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_0_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_0_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_0_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_0_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_0_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_0_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_0_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_0_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_nf" is not found in dut, it should satisfy rule "out_0_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_0_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_veew" is not found in dut, it should satisfy rule "out_0_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vill" is not found in dut, it should satisfy rule "out_0_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_0_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vm" is not found in dut, it should satisfy rule "out_0_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vma" is not found in dut, it should satisfy rule "out_0_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_0_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_0_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vta" is not found in dut, it should satisfy rule "out_0_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_waitForward" is not found in dut, it should satisfy rule "out_0_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_wfflags" is not found in dut, it should satisfy rule "out_0_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_ready" is not found in dut, it should satisfy rule "out_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_valid" is not found in dut, it should satisfy rule "out_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_blockBackward" is not found in dut, it should satisfy rule "out_1_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_canRobCompress" is not found in dut, it should satisfy rule "out_1_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_commitType" is not found in dut, it should satisfy rule "out_1_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_firstUop" is not found in dut, it should satisfy rule "out_1_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_flushPipe" is not found in dut, it should satisfy rule "out_1_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_foldpc" is not found in dut, it should satisfy rule "out_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpWen" is not found in dut, it should satisfy rule "out_1_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_rm" is not found in dut, it should satisfy rule "out_1_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typ" is not found in dut, it should satisfy rule "out_1_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_1_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_1_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqOffset" is not found in dut, it should satisfy rule "out_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuOpType" is not found in dut, it should satisfy rule "out_1_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuType" is not found in dut, it should satisfy rule "out_1_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_imm" is not found in dut, it should satisfy rule "out_1_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_instr" is not found in dut, it should satisfy rule "out_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isMove" is not found in dut, it should satisfy rule "out_1_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isVset" is not found in dut, it should satisfy rule "out_1_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isXSTrap" is not found in dut, it should satisfy rule "out_1_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lastUop" is not found in dut, it should satisfy rule "out_1_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ldest" is not found in dut, it should satisfy rule "out_1_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_0" is not found in dut, it should satisfy rule "out_1_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_1" is not found in dut, it should satisfy rule "out_1_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_2" is not found in dut, it should satisfy rule "out_1_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_numWB" is not found in dut, it should satisfy rule "out_1_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_pred_taken" is not found in dut, it should satisfy rule "out_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_rfWen" is not found in dut, it should satisfy rule "out_1_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_selImm" is not found in dut, it should satisfy rule "out_1_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_0" is not found in dut, it should satisfy rule "out_1_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_1" is not found in dut, it should satisfy rule "out_1_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_2" is not found in dut, it should satisfy rule "out_1_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_3" is not found in dut, it should satisfy rule "out_1_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_4" is not found in dut, it should satisfy rule "out_1_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_trigger" is not found in dut, it should satisfy rule "out_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopIdx" is not found in dut, it should satisfy rule "out_1_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopSplitType" is not found in dut, it should satisfy rule "out_1_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_v0Wen" is not found in dut, it should satisfy rule "out_1_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vecWen" is not found in dut, it should satisfy rule "out_1_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlWen" is not found in dut, it should satisfy rule "out_1_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlsInstr" is not found in dut, it should satisfy rule "out_1_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_1_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_1_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_1_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_1_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_1_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_1_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_1_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_1_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_1_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_1_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_nf" is not found in dut, it should satisfy rule "out_1_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_1_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_veew" is not found in dut, it should satisfy rule "out_1_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vill" is not found in dut, it should satisfy rule "out_1_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_1_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vm" is not found in dut, it should satisfy rule "out_1_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vma" is not found in dut, it should satisfy rule "out_1_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_1_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_1_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vta" is not found in dut, it should satisfy rule "out_1_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_waitForward" is not found in dut, it should satisfy rule "out_1_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_wfflags" is not found in dut, it should satisfy rule "out_1_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_ready" is not found in dut, it should satisfy rule "out_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_valid" is not found in dut, it should satisfy rule "out_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_blockBackward" is not found in dut, it should satisfy rule "out_2_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_canRobCompress" is not found in dut, it should satisfy rule "out_2_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_commitType" is not found in dut, it should satisfy rule "out_2_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_firstUop" is not found in dut, it should satisfy rule "out_2_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_flushPipe" is not found in dut, it should satisfy rule "out_2_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_foldpc" is not found in dut, it should satisfy rule "out_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpWen" is not found in dut, it should satisfy rule "out_2_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_rm" is not found in dut, it should satisfy rule "out_2_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typ" is not found in dut, it should satisfy rule "out_2_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_2_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_2_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqOffset" is not found in dut, it should satisfy rule "out_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuOpType" is not found in dut, it should satisfy rule "out_2_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuType" is not found in dut, it should satisfy rule "out_2_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_imm" is not found in dut, it should satisfy rule "out_2_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_instr" is not found in dut, it should satisfy rule "out_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isMove" is not found in dut, it should satisfy rule "out_2_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isVset" is not found in dut, it should satisfy rule "out_2_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isXSTrap" is not found in dut, it should satisfy rule "out_2_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lastUop" is not found in dut, it should satisfy rule "out_2_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ldest" is not found in dut, it should satisfy rule "out_2_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_0" is not found in dut, it should satisfy rule "out_2_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_1" is not found in dut, it should satisfy rule "out_2_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_2" is not found in dut, it should satisfy rule "out_2_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_numWB" is not found in dut, it should satisfy rule "out_2_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_pred_taken" is not found in dut, it should satisfy rule "out_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_rfWen" is not found in dut, it should satisfy rule "out_2_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_selImm" is not found in dut, it should satisfy rule "out_2_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_0" is not found in dut, it should satisfy rule "out_2_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_1" is not found in dut, it should satisfy rule "out_2_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_2" is not found in dut, it should satisfy rule "out_2_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_3" is not found in dut, it should satisfy rule "out_2_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_4" is not found in dut, it should satisfy rule "out_2_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_trigger" is not found in dut, it should satisfy rule "out_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopIdx" is not found in dut, it should satisfy rule "out_2_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopSplitType" is not found in dut, it should satisfy rule "out_2_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_v0Wen" is not found in dut, it should satisfy rule "out_2_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vecWen" is not found in dut, it should satisfy rule "out_2_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlWen" is not found in dut, it should satisfy rule "out_2_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlsInstr" is not found in dut, it should satisfy rule "out_2_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_2_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_2_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_2_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_2_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_2_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_2_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_2_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_2_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_2_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_2_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_nf" is not found in dut, it should satisfy rule "out_2_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_2_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_veew" is not found in dut, it should satisfy rule "out_2_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vill" is not found in dut, it should satisfy rule "out_2_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_2_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vm" is not found in dut, it should satisfy rule "out_2_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vma" is not found in dut, it should satisfy rule "out_2_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_2_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_2_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vta" is not found in dut, it should satisfy rule "out_2_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_waitForward" is not found in dut, it should satisfy rule "out_2_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_wfflags" is not found in dut, it should satisfy rule "out_2_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_ready" is not found in dut, it should satisfy rule "out_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_valid" is not found in dut, it should satisfy rule "out_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_blockBackward" is not found in dut, it should satisfy rule "out_3_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_canRobCompress" is not found in dut, it should satisfy rule "out_3_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_commitType" is not found in dut, it should satisfy rule "out_3_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_firstUop" is not found in dut, it should satisfy rule "out_3_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_flushPipe" is not found in dut, it should satisfy rule "out_3_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_foldpc" is not found in dut, it should satisfy rule "out_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpWen" is not found in dut, it should satisfy rule "out_3_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_rm" is not found in dut, it should satisfy rule "out_3_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typ" is not found in dut, it should satisfy rule "out_3_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_3_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_3_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqOffset" is not found in dut, it should satisfy rule "out_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuOpType" is not found in dut, it should satisfy rule "out_3_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuType" is not found in dut, it should satisfy rule "out_3_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_imm" is not found in dut, it should satisfy rule "out_3_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_instr" is not found in dut, it should satisfy rule "out_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isMove" is not found in dut, it should satisfy rule "out_3_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isVset" is not found in dut, it should satisfy rule "out_3_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isXSTrap" is not found in dut, it should satisfy rule "out_3_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lastUop" is not found in dut, it should satisfy rule "out_3_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ldest" is not found in dut, it should satisfy rule "out_3_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_0" is not found in dut, it should satisfy rule "out_3_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_1" is not found in dut, it should satisfy rule "out_3_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_2" is not found in dut, it should satisfy rule "out_3_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_numWB" is not found in dut, it should satisfy rule "out_3_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_pred_taken" is not found in dut, it should satisfy rule "out_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_rfWen" is not found in dut, it should satisfy rule "out_3_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_selImm" is not found in dut, it should satisfy rule "out_3_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_0" is not found in dut, it should satisfy rule "out_3_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_1" is not found in dut, it should satisfy rule "out_3_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_2" is not found in dut, it should satisfy rule "out_3_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_3" is not found in dut, it should satisfy rule "out_3_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_4" is not found in dut, it should satisfy rule "out_3_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_trigger" is not found in dut, it should satisfy rule "out_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopIdx" is not found in dut, it should satisfy rule "out_3_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopSplitType" is not found in dut, it should satisfy rule "out_3_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_v0Wen" is not found in dut, it should satisfy rule "out_3_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vecWen" is not found in dut, it should satisfy rule "out_3_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlWen" is not found in dut, it should satisfy rule "out_3_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlsInstr" is not found in dut, it should satisfy rule "out_3_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_3_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_3_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_3_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_3_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_3_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_3_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_3_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_3_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_3_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_3_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_nf" is not found in dut, it should satisfy rule "out_3_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_3_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_veew" is not found in dut, it should satisfy rule "out_3_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vill" is not found in dut, it should satisfy rule "out_3_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_3_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vm" is not found in dut, it should satisfy rule "out_3_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vma" is not found in dut, it should satisfy rule "out_3_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_3_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_3_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vta" is not found in dut, it should satisfy rule "out_3_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_waitForward" is not found in dut, it should satisfy rule "out_3_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_wfflags" is not found in dut, it should satisfy rule "out_3_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_ready" is not found in dut, it should satisfy rule "out_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_valid" is not found in dut, it should satisfy rule "out_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_blockBackward" is not found in dut, it should satisfy rule "out_4_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_canRobCompress" is not found in dut, it should satisfy rule "out_4_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_commitType" is not found in dut, it should satisfy rule "out_4_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_firstUop" is not found in dut, it should satisfy rule "out_4_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_flushPipe" is not found in dut, it should satisfy rule "out_4_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_foldpc" is not found in dut, it should satisfy rule "out_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpWen" is not found in dut, it should satisfy rule "out_4_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_rm" is not found in dut, it should satisfy rule "out_4_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typ" is not found in dut, it should satisfy rule "out_4_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_4_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_4_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqOffset" is not found in dut, it should satisfy rule "out_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuOpType" is not found in dut, it should satisfy rule "out_4_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuType" is not found in dut, it should satisfy rule "out_4_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_imm" is not found in dut, it should satisfy rule "out_4_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_instr" is not found in dut, it should satisfy rule "out_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isMove" is not found in dut, it should satisfy rule "out_4_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isVset" is not found in dut, it should satisfy rule "out_4_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isXSTrap" is not found in dut, it should satisfy rule "out_4_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lastUop" is not found in dut, it should satisfy rule "out_4_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ldest" is not found in dut, it should satisfy rule "out_4_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_0" is not found in dut, it should satisfy rule "out_4_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_1" is not found in dut, it should satisfy rule "out_4_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_2" is not found in dut, it should satisfy rule "out_4_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_numWB" is not found in dut, it should satisfy rule "out_4_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_pred_taken" is not found in dut, it should satisfy rule "out_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_rfWen" is not found in dut, it should satisfy rule "out_4_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_selImm" is not found in dut, it should satisfy rule "out_4_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_0" is not found in dut, it should satisfy rule "out_4_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_1" is not found in dut, it should satisfy rule "out_4_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_2" is not found in dut, it should satisfy rule "out_4_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_3" is not found in dut, it should satisfy rule "out_4_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_4" is not found in dut, it should satisfy rule "out_4_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_trigger" is not found in dut, it should satisfy rule "out_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopIdx" is not found in dut, it should satisfy rule "out_4_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopSplitType" is not found in dut, it should satisfy rule "out_4_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_v0Wen" is not found in dut, it should satisfy rule "out_4_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vecWen" is not found in dut, it should satisfy rule "out_4_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlWen" is not found in dut, it should satisfy rule "out_4_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlsInstr" is not found in dut, it should satisfy rule "out_4_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_4_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_4_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_4_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_4_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_4_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_4_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_4_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_4_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_4_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_4_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_nf" is not found in dut, it should satisfy rule "out_4_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_4_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_veew" is not found in dut, it should satisfy rule "out_4_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vill" is not found in dut, it should satisfy rule "out_4_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_4_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vm" is not found in dut, it should satisfy rule "out_4_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vma" is not found in dut, it should satisfy rule "out_4_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_4_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_4_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vta" is not found in dut, it should satisfy rule "out_4_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_waitForward" is not found in dut, it should satisfy rule "out_4_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_wfflags" is not found in dut, it should satisfy rule "out_4_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_ready" is not found in dut, it should satisfy rule "out_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_valid" is not found in dut, it should satisfy rule "out_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_blockBackward" is not found in dut, it should satisfy rule "out_5_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_canRobCompress" is not found in dut, it should satisfy rule "out_5_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_commitType" is not found in dut, it should satisfy rule "out_5_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "out_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_22" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_3" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "out_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_firstUop" is not found in dut, it should satisfy rule "out_5_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_flushPipe" is not found in dut, it should satisfy rule "out_5_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_foldpc" is not found in dut, it should satisfy rule "out_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpWen" is not found in dut, it should satisfy rule "out_5_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_rm" is not found in dut, it should satisfy rule "out_5_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typ" is not found in dut, it should satisfy rule "out_5_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "out_5_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_wflags" is not found in dut, it should satisfy rule "out_5_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqOffset" is not found in dut, it should satisfy rule "out_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "out_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "out_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuOpType" is not found in dut, it should satisfy rule "out_5_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuType" is not found in dut, it should satisfy rule "out_5_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_imm" is not found in dut, it should satisfy rule "out_5_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_instr" is not found in dut, it should satisfy rule "out_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "out_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isMove" is not found in dut, it should satisfy rule "out_5_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isVset" is not found in dut, it should satisfy rule "out_5_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isXSTrap" is not found in dut, it should satisfy rule "out_5_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lastUop" is not found in dut, it should satisfy rule "out_5_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ldest" is not found in dut, it should satisfy rule "out_5_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_0" is not found in dut, it should satisfy rule "out_5_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_1" is not found in dut, it should satisfy rule "out_5_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_2" is not found in dut, it should satisfy rule "out_5_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_numWB" is not found in dut, it should satisfy rule "out_5_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "out_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "out_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_pred_taken" is not found in dut, it should satisfy rule "out_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_rfWen" is not found in dut, it should satisfy rule "out_5_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_selImm" is not found in dut, it should satisfy rule "out_5_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_0" is not found in dut, it should satisfy rule "out_5_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_1" is not found in dut, it should satisfy rule "out_5_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_2" is not found in dut, it should satisfy rule "out_5_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_3" is not found in dut, it should satisfy rule "out_5_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_4" is not found in dut, it should satisfy rule "out_5_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_trigger" is not found in dut, it should satisfy rule "out_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopIdx" is not found in dut, it should satisfy rule "out_5_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopSplitType" is not found in dut, it should satisfy rule "out_5_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_v0Wen" is not found in dut, it should satisfy rule "out_5_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vecWen" is not found in dut, it should satisfy rule "out_5_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlWen" is not found in dut, it should satisfy rule "out_5_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlsInstr" is not found in dut, it should satisfy rule "out_5_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "out_5_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "out_5_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "out_5_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "out_5_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "out_5_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isExt" is not found in dut, it should satisfy rule "out_5_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "out_5_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "out_5_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isVleff" is not found in dut, it should satisfy rule "out_5_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "out_5_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_nf" is not found in dut, it should satisfy rule "out_5_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVill" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVma" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVsew" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVta" is not found in dut, it should satisfy rule "out_5_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_veew" is not found in dut, it should satisfy rule "out_5_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vill" is not found in dut, it should satisfy rule "out_5_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vlmul" is not found in dut, it should satisfy rule "out_5_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vm" is not found in dut, it should satisfy rule "out_5_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vma" is not found in dut, it should satisfy rule "out_5_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vsew" is not found in dut, it should satisfy rule "out_5_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vstart" is not found in dut, it should satisfy rule "out_5_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vta" is not found in dut, it should satisfy rule "out_5_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_waitForward" is not found in dut, it should satisfy rule "out_5_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_wfflags" is not found in dut, it should satisfy rule "out_5_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_ready" is not found in dut, it should satisfy rule "out_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_valid" is not found in dut, it should satisfy rule "out_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_0_value" is not found in dut, it should satisfy rule "perf_0_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_1_value" is not found in dut, it should satisfy rule "perf_1_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_2_value" is not found in dut, it should satisfy rule "perf_2_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_3_value" is not found in dut, it should satisfy rule "perf_3_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "redirect" is not found in dut, it should satisfy rule "redirect"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqOffset" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_value" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_instr" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_valid" is not found in dut, it should satisfy rule "toCSR_trapInstInfo_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_addr" is not found in dut, it should satisfy rule "vecRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_hold" is not found in dut, it should satisfy rule "vecRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_addr" is not found in dut, it should satisfy rule "vecRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_hold" is not found in dut, it should satisfy rule "vecRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_addr" is not found in dut, it should satisfy rule "vecRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_hold" is not found in dut, it should satisfy rule "vecRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_addr" is not found in dut, it should satisfy rule "vecRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_hold" is not found in dut, it should satisfy rule "vecRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_addr" is not found in dut, it should satisfy rule "vecRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_hold" is not found in dut, it should satisfy rule "vecRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_addr" is not found in dut, it should satisfy rule "vecRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_hold" is not found in dut, it should satisfy rule "vecRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_addr" is not found in dut, it should satisfy rule "vecRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_hold" is not found in dut, it should satisfy rule "vecRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_addr" is not found in dut, it should satisfy rule "vecRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_hold" is not found in dut, it should satisfy rule "vecRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_addr" is not found in dut, it should satisfy rule "vecRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_hold" is not found in dut, it should satisfy rule "vecRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_addr" is not found in dut, it should satisfy rule "vecRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_hold" is not found in dut, it should satisfy rule "vecRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_addr" is not found in dut, it should satisfy rule "vecRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_hold" is not found in dut, it should satisfy rule "vecRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_addr" is not found in dut, it should satisfy rule "vecRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_hold" is not found in dut, it should satisfy rule "vecRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_addr" is not found in dut, it should satisfy rule "vecRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_hold" is not found in dut, it should satisfy rule "vecRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_addr" is not found in dut, it should satisfy rule "vecRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_hold" is not found in dut, it should satisfy rule "vecRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_addr" is not found in dut, it should satisfy rule "vecRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_hold" is not found in dut, it should satisfy rule "vecRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_addr" is not found in dut, it should satisfy rule "vecRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_hold" is not found in dut, it should satisfy rule "vecRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_addr" is not found in dut, it should satisfy rule "vecRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_hold" is not found in dut, it should satisfy rule "vecRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_addr" is not found in dut, it should satisfy rule "vecRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_hold" is not found in dut, it should satisfy rule "vecRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_illegal" is not found in dut, it should satisfy rule "vsetvlVType_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vlmul" is not found in dut, it should satisfy rule "vsetvlVType_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vma" is not found in dut, it should satisfy rule "vsetvlVType_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vsew" is not found in dut, it should satisfy rule "vsetvlVType_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vta" is not found in dut, it should satisfy rule "vsetvlVType_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vstart" is not found in dut, it should satisfy rule "vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "in"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "out_bits"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_blockBackward" is not found in dut, it should satisfy rule "io_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_canRobCompress" is not found in dut, it should satisfy rule "io_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_commitType" is not found in dut, it should satisfy rule "io_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_firstUop" is not found in dut, it should satisfy rule "io_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_flushPipe" is not found in dut, it should satisfy rule "io_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpWen" is not found in dut, it should satisfy rule "io_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_rm" is not found in dut, it should satisfy rule "io_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typ" is not found in dut, it should satisfy rule "io_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_wflags" is not found in dut, it should satisfy rule "io_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuOpType" is not found in dut, it should satisfy rule "io_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuType" is not found in dut, it should satisfy rule "io_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_imm" is not found in dut, it should satisfy rule "io_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isMove" is not found in dut, it should satisfy rule "io_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isVset" is not found in dut, it should satisfy rule "io_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isXSTrap" is not found in dut, it should satisfy rule "io_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lastUop" is not found in dut, it should satisfy rule "io_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ldest" is not found in dut, it should satisfy rule "io_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_0" is not found in dut, it should satisfy rule "io_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_1" is not found in dut, it should satisfy rule "io_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_2" is not found in dut, it should satisfy rule "io_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_numWB" is not found in dut, it should satisfy rule "io_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_rfWen" is not found in dut, it should satisfy rule "io_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_selImm" is not found in dut, it should satisfy rule "io_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_0" is not found in dut, it should satisfy rule "io_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_1" is not found in dut, it should satisfy rule "io_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_2" is not found in dut, it should satisfy rule "io_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_3" is not found in dut, it should satisfy rule "io_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_4" is not found in dut, it should satisfy rule "io_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopIdx" is not found in dut, it should satisfy rule "io_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopSplitType" is not found in dut, it should satisfy rule "io_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_v0Wen" is not found in dut, it should satisfy rule "io_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vecWen" is not found in dut, it should satisfy rule "io_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlWen" is not found in dut, it should satisfy rule "io_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlsInstr" is not found in dut, it should satisfy rule "io_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isExt" is not found in dut, it should satisfy rule "io_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_nf" is not found in dut, it should satisfy rule "io_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVill" is not found in dut, it should satisfy rule "io_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVma" is not found in dut, it should satisfy rule "io_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVta" is not found in dut, it should satisfy rule "io_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_veew" is not found in dut, it should satisfy rule "io_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vill" is not found in dut, it should satisfy rule "io_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vm" is not found in dut, it should satisfy rule "io_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vma" is not found in dut, it should satisfy rule "io_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vsew" is not found in dut, it should satisfy rule "io_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vstart" is not found in dut, it should satisfy rule "io_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vta" is not found in dut, it should satisfy rule "io_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_waitForward" is not found in dut, it should satisfy rule "io_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_wfflags" is not found in dut, it should satisfy rule "io_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_blockBackward" is not found in dut, it should satisfy rule "io_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_canRobCompress" is not found in dut, it should satisfy rule "io_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_commitType" is not found in dut, it should satisfy rule "io_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_firstUop" is not found in dut, it should satisfy rule "io_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_flushPipe" is not found in dut, it should satisfy rule "io_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpWen" is not found in dut, it should satisfy rule "io_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_rm" is not found in dut, it should satisfy rule "io_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typ" is not found in dut, it should satisfy rule "io_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_wflags" is not found in dut, it should satisfy rule "io_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuOpType" is not found in dut, it should satisfy rule "io_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuType" is not found in dut, it should satisfy rule "io_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_imm" is not found in dut, it should satisfy rule "io_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isMove" is not found in dut, it should satisfy rule "io_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isVset" is not found in dut, it should satisfy rule "io_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isXSTrap" is not found in dut, it should satisfy rule "io_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lastUop" is not found in dut, it should satisfy rule "io_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ldest" is not found in dut, it should satisfy rule "io_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_0" is not found in dut, it should satisfy rule "io_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_1" is not found in dut, it should satisfy rule "io_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_2" is not found in dut, it should satisfy rule "io_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_numWB" is not found in dut, it should satisfy rule "io_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_rfWen" is not found in dut, it should satisfy rule "io_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_selImm" is not found in dut, it should satisfy rule "io_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_0" is not found in dut, it should satisfy rule "io_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_1" is not found in dut, it should satisfy rule "io_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_2" is not found in dut, it should satisfy rule "io_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_3" is not found in dut, it should satisfy rule "io_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_4" is not found in dut, it should satisfy rule "io_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopIdx" is not found in dut, it should satisfy rule "io_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopSplitType" is not found in dut, it should satisfy rule "io_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_v0Wen" is not found in dut, it should satisfy rule "io_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vecWen" is not found in dut, it should satisfy rule "io_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlWen" is not found in dut, it should satisfy rule "io_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlsInstr" is not found in dut, it should satisfy rule "io_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isExt" is not found in dut, it should satisfy rule "io_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_nf" is not found in dut, it should satisfy rule "io_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVill" is not found in dut, it should satisfy rule "io_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVma" is not found in dut, it should satisfy rule "io_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVta" is not found in dut, it should satisfy rule "io_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_veew" is not found in dut, it should satisfy rule "io_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vill" is not found in dut, it should satisfy rule "io_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vm" is not found in dut, it should satisfy rule "io_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vma" is not found in dut, it should satisfy rule "io_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vsew" is not found in dut, it should satisfy rule "io_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vstart" is not found in dut, it should satisfy rule "io_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vta" is not found in dut, it should satisfy rule "io_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_waitForward" is not found in dut, it should satisfy rule "io_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_wfflags" is not found in dut, it should satisfy rule "io_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_blockBackward" is not found in dut, it should satisfy rule "io_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_canRobCompress" is not found in dut, it should satisfy rule "io_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_commitType" is not found in dut, it should satisfy rule "io_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_firstUop" is not found in dut, it should satisfy rule "io_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_flushPipe" is not found in dut, it should satisfy rule "io_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpWen" is not found in dut, it should satisfy rule "io_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_rm" is not found in dut, it should satisfy rule "io_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typ" is not found in dut, it should satisfy rule "io_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_wflags" is not found in dut, it should satisfy rule "io_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuOpType" is not found in dut, it should satisfy rule "io_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuType" is not found in dut, it should satisfy rule "io_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_imm" is not found in dut, it should satisfy rule "io_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isMove" is not found in dut, it should satisfy rule "io_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isVset" is not found in dut, it should satisfy rule "io_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isXSTrap" is not found in dut, it should satisfy rule "io_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lastUop" is not found in dut, it should satisfy rule "io_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ldest" is not found in dut, it should satisfy rule "io_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_0" is not found in dut, it should satisfy rule "io_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_1" is not found in dut, it should satisfy rule "io_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_2" is not found in dut, it should satisfy rule "io_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_numWB" is not found in dut, it should satisfy rule "io_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_rfWen" is not found in dut, it should satisfy rule "io_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_selImm" is not found in dut, it should satisfy rule "io_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_0" is not found in dut, it should satisfy rule "io_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_1" is not found in dut, it should satisfy rule "io_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_2" is not found in dut, it should satisfy rule "io_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_3" is not found in dut, it should satisfy rule "io_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_4" is not found in dut, it should satisfy rule "io_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopIdx" is not found in dut, it should satisfy rule "io_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopSplitType" is not found in dut, it should satisfy rule "io_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_v0Wen" is not found in dut, it should satisfy rule "io_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vecWen" is not found in dut, it should satisfy rule "io_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlWen" is not found in dut, it should satisfy rule "io_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlsInstr" is not found in dut, it should satisfy rule "io_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isExt" is not found in dut, it should satisfy rule "io_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_nf" is not found in dut, it should satisfy rule "io_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVill" is not found in dut, it should satisfy rule "io_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVma" is not found in dut, it should satisfy rule "io_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVta" is not found in dut, it should satisfy rule "io_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_veew" is not found in dut, it should satisfy rule "io_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vill" is not found in dut, it should satisfy rule "io_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vm" is not found in dut, it should satisfy rule "io_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vma" is not found in dut, it should satisfy rule "io_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vsew" is not found in dut, it should satisfy rule "io_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vstart" is not found in dut, it should satisfy rule "io_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vta" is not found in dut, it should satisfy rule "io_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_waitForward" is not found in dut, it should satisfy rule "io_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_wfflags" is not found in dut, it should satisfy rule "io_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_blockBackward" is not found in dut, it should satisfy rule "io_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_canRobCompress" is not found in dut, it should satisfy rule "io_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_commitType" is not found in dut, it should satisfy rule "io_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_firstUop" is not found in dut, it should satisfy rule "io_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_flushPipe" is not found in dut, it should satisfy rule "io_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpWen" is not found in dut, it should satisfy rule "io_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_rm" is not found in dut, it should satisfy rule "io_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typ" is not found in dut, it should satisfy rule "io_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_wflags" is not found in dut, it should satisfy rule "io_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuOpType" is not found in dut, it should satisfy rule "io_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuType" is not found in dut, it should satisfy rule "io_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_imm" is not found in dut, it should satisfy rule "io_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isMove" is not found in dut, it should satisfy rule "io_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isVset" is not found in dut, it should satisfy rule "io_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isXSTrap" is not found in dut, it should satisfy rule "io_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lastUop" is not found in dut, it should satisfy rule "io_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ldest" is not found in dut, it should satisfy rule "io_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_0" is not found in dut, it should satisfy rule "io_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_1" is not found in dut, it should satisfy rule "io_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_2" is not found in dut, it should satisfy rule "io_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_numWB" is not found in dut, it should satisfy rule "io_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_rfWen" is not found in dut, it should satisfy rule "io_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_selImm" is not found in dut, it should satisfy rule "io_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_0" is not found in dut, it should satisfy rule "io_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_1" is not found in dut, it should satisfy rule "io_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_2" is not found in dut, it should satisfy rule "io_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_3" is not found in dut, it should satisfy rule "io_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_4" is not found in dut, it should satisfy rule "io_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopIdx" is not found in dut, it should satisfy rule "io_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopSplitType" is not found in dut, it should satisfy rule "io_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_v0Wen" is not found in dut, it should satisfy rule "io_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vecWen" is not found in dut, it should satisfy rule "io_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlWen" is not found in dut, it should satisfy rule "io_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlsInstr" is not found in dut, it should satisfy rule "io_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isExt" is not found in dut, it should satisfy rule "io_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_nf" is not found in dut, it should satisfy rule "io_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVill" is not found in dut, it should satisfy rule "io_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVma" is not found in dut, it should satisfy rule "io_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVta" is not found in dut, it should satisfy rule "io_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_veew" is not found in dut, it should satisfy rule "io_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vill" is not found in dut, it should satisfy rule "io_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vm" is not found in dut, it should satisfy rule "io_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vma" is not found in dut, it should satisfy rule "io_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vsew" is not found in dut, it should satisfy rule "io_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vstart" is not found in dut, it should satisfy rule "io_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vta" is not found in dut, it should satisfy rule "io_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_waitForward" is not found in dut, it should satisfy rule "io_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_wfflags" is not found in dut, it should satisfy rule "io_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_blockBackward" is not found in dut, it should satisfy rule "io_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_canRobCompress" is not found in dut, it should satisfy rule "io_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_commitType" is not found in dut, it should satisfy rule "io_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_firstUop" is not found in dut, it should satisfy rule "io_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_flushPipe" is not found in dut, it should satisfy rule "io_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpWen" is not found in dut, it should satisfy rule "io_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_rm" is not found in dut, it should satisfy rule "io_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typ" is not found in dut, it should satisfy rule "io_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_wflags" is not found in dut, it should satisfy rule "io_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuOpType" is not found in dut, it should satisfy rule "io_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuType" is not found in dut, it should satisfy rule "io_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_imm" is not found in dut, it should satisfy rule "io_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isMove" is not found in dut, it should satisfy rule "io_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isVset" is not found in dut, it should satisfy rule "io_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isXSTrap" is not found in dut, it should satisfy rule "io_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lastUop" is not found in dut, it should satisfy rule "io_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ldest" is not found in dut, it should satisfy rule "io_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_0" is not found in dut, it should satisfy rule "io_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_1" is not found in dut, it should satisfy rule "io_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_2" is not found in dut, it should satisfy rule "io_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_numWB" is not found in dut, it should satisfy rule "io_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_rfWen" is not found in dut, it should satisfy rule "io_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_selImm" is not found in dut, it should satisfy rule "io_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_0" is not found in dut, it should satisfy rule "io_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_1" is not found in dut, it should satisfy rule "io_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_2" is not found in dut, it should satisfy rule "io_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_3" is not found in dut, it should satisfy rule "io_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_4" is not found in dut, it should satisfy rule "io_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopIdx" is not found in dut, it should satisfy rule "io_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopSplitType" is not found in dut, it should satisfy rule "io_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_v0Wen" is not found in dut, it should satisfy rule "io_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vecWen" is not found in dut, it should satisfy rule "io_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlWen" is not found in dut, it should satisfy rule "io_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlsInstr" is not found in dut, it should satisfy rule "io_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isExt" is not found in dut, it should satisfy rule "io_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_nf" is not found in dut, it should satisfy rule "io_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVill" is not found in dut, it should satisfy rule "io_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVma" is not found in dut, it should satisfy rule "io_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVta" is not found in dut, it should satisfy rule "io_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_veew" is not found in dut, it should satisfy rule "io_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vill" is not found in dut, it should satisfy rule "io_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vm" is not found in dut, it should satisfy rule "io_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vma" is not found in dut, it should satisfy rule "io_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vsew" is not found in dut, it should satisfy rule "io_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vstart" is not found in dut, it should satisfy rule "io_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vta" is not found in dut, it should satisfy rule "io_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_waitForward" is not found in dut, it should satisfy rule "io_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_wfflags" is not found in dut, it should satisfy rule "io_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_blockBackward" is not found in dut, it should satisfy rule "io_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_canRobCompress" is not found in dut, it should satisfy rule "io_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_commitType" is not found in dut, it should satisfy rule "io_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_firstUop" is not found in dut, it should satisfy rule "io_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_flushPipe" is not found in dut, it should satisfy rule "io_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpWen" is not found in dut, it should satisfy rule "io_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_rm" is not found in dut, it should satisfy rule "io_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typ" is not found in dut, it should satisfy rule "io_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_wflags" is not found in dut, it should satisfy rule "io_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuOpType" is not found in dut, it should satisfy rule "io_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuType" is not found in dut, it should satisfy rule "io_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_imm" is not found in dut, it should satisfy rule "io_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isMove" is not found in dut, it should satisfy rule "io_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isVset" is not found in dut, it should satisfy rule "io_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isXSTrap" is not found in dut, it should satisfy rule "io_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lastUop" is not found in dut, it should satisfy rule "io_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ldest" is not found in dut, it should satisfy rule "io_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_0" is not found in dut, it should satisfy rule "io_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_1" is not found in dut, it should satisfy rule "io_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_2" is not found in dut, it should satisfy rule "io_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_numWB" is not found in dut, it should satisfy rule "io_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_rfWen" is not found in dut, it should satisfy rule "io_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_selImm" is not found in dut, it should satisfy rule "io_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_0" is not found in dut, it should satisfy rule "io_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_1" is not found in dut, it should satisfy rule "io_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_2" is not found in dut, it should satisfy rule "io_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_3" is not found in dut, it should satisfy rule "io_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_4" is not found in dut, it should satisfy rule "io_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopIdx" is not found in dut, it should satisfy rule "io_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopSplitType" is not found in dut, it should satisfy rule "io_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_v0Wen" is not found in dut, it should satisfy rule "io_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vecWen" is not found in dut, it should satisfy rule "io_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlWen" is not found in dut, it should satisfy rule "io_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlsInstr" is not found in dut, it should satisfy rule "io_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isExt" is not found in dut, it should satisfy rule "io_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_nf" is not found in dut, it should satisfy rule "io_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVill" is not found in dut, it should satisfy rule "io_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVma" is not found in dut, it should satisfy rule "io_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVta" is not found in dut, it should satisfy rule "io_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_veew" is not found in dut, it should satisfy rule "io_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vill" is not found in dut, it should satisfy rule "io_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vm" is not found in dut, it should satisfy rule "io_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vma" is not found in dut, it should satisfy rule "io_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vsew" is not found in dut, it should satisfy rule "io_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vstart" is not found in dut, it should satisfy rule "io_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vta" is not found in dut, it should satisfy rule "io_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_waitForward" is not found in dut, it should satisfy rule "io_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_wfflags" is not found in dut, it should satisfy rule "io_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.csrCtrl_singlestep" is not found in dut, it should satisfy rule "io_csrCtrl_singlestep"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_0_0_addr" is not found in dut, it should satisfy rule "io_fpRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_0_0_hold" is not found in dut, it should satisfy rule "io_fpRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_0_1_addr" is not found in dut, it should satisfy rule "io_fpRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_0_1_hold" is not found in dut, it should satisfy rule "io_fpRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_0_2_addr" is not found in dut, it should satisfy rule "io_fpRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_0_2_hold" is not found in dut, it should satisfy rule "io_fpRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_1_0_addr" is not found in dut, it should satisfy rule "io_fpRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_1_0_hold" is not found in dut, it should satisfy rule "io_fpRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_1_1_addr" is not found in dut, it should satisfy rule "io_fpRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_1_1_hold" is not found in dut, it should satisfy rule "io_fpRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_1_2_addr" is not found in dut, it should satisfy rule "io_fpRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_1_2_hold" is not found in dut, it should satisfy rule "io_fpRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_2_0_addr" is not found in dut, it should satisfy rule "io_fpRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_2_0_hold" is not found in dut, it should satisfy rule "io_fpRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_2_1_addr" is not found in dut, it should satisfy rule "io_fpRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_2_1_hold" is not found in dut, it should satisfy rule "io_fpRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_2_2_addr" is not found in dut, it should satisfy rule "io_fpRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_2_2_hold" is not found in dut, it should satisfy rule "io_fpRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_3_0_addr" is not found in dut, it should satisfy rule "io_fpRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_3_0_hold" is not found in dut, it should satisfy rule "io_fpRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_3_1_addr" is not found in dut, it should satisfy rule "io_fpRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_3_1_hold" is not found in dut, it should satisfy rule "io_fpRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_3_2_addr" is not found in dut, it should satisfy rule "io_fpRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_3_2_hold" is not found in dut, it should satisfy rule "io_fpRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_4_0_addr" is not found in dut, it should satisfy rule "io_fpRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_4_0_hold" is not found in dut, it should satisfy rule "io_fpRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_4_1_addr" is not found in dut, it should satisfy rule "io_fpRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_4_1_hold" is not found in dut, it should satisfy rule "io_fpRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_4_2_addr" is not found in dut, it should satisfy rule "io_fpRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_4_2_hold" is not found in dut, it should satisfy rule "io_fpRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_5_0_addr" is not found in dut, it should satisfy rule "io_fpRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_5_0_hold" is not found in dut, it should satisfy rule "io_fpRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_5_1_addr" is not found in dut, it should satisfy rule "io_fpRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_5_1_hold" is not found in dut, it should satisfy rule "io_fpRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_5_2_addr" is not found in dut, it should satisfy rule "io_fpRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_5_2_hold" is not found in dut, it should satisfy rule "io_fpRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_cboCF" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_cboI" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_cboZ" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_frm" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_frm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_fsIsOff" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_hfenceGVMA" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_hfenceGVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_hfenceVVMA" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_hfenceVVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_hlsv" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_sfencePart" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_sfenceVMA" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_vsIsOff" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_vsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_wfi" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_special_cboI2F" is not found in dut, it should satisfy rule "io_fromCSR_special_cboI2F"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_virtualInst_cboCF" is not found in dut, it should satisfy rule "io_fromCSR_virtualInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_virtualInst_cboI" is not found in dut, it should satisfy rule "io_fromCSR_virtualInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_virtualInst_cboZ" is not found in dut, it should satisfy rule "io_fromCSR_virtualInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_virtualInst_hfence" is not found in dut, it should satisfy rule "io_fromCSR_virtualInst_hfence"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_virtualInst_hlsv" is not found in dut, it should satisfy rule "io_fromCSR_virtualInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_virtualInst_sfencePart" is not found in dut, it should satisfy rule "io_fromCSR_virtualInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_virtualInst_sfenceVMA" is not found in dut, it should satisfy rule "io_fromCSR_virtualInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_virtualInst_wfi" is not found in dut, it should satisfy rule "io_fromCSR_virtualInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_commitVType_hasVsetvl" is not found in dut, it should satisfy rule "io_fromRob_commitVType_hasVsetvl"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_commitVType_vtype_bits_illegal" is not found in dut, it should satisfy rule "io_fromRob_commitVType_vtype_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_commitVType_vtype_bits_vlmul" is not found in dut, it should satisfy rule "io_fromRob_commitVType_vtype_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_commitVType_vtype_bits_vma" is not found in dut, it should satisfy rule "io_fromRob_commitVType_vtype_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_commitVType_vtype_bits_vsew" is not found in dut, it should satisfy rule "io_fromRob_commitVType_vtype_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_commitVType_vtype_bits_vta" is not found in dut, it should satisfy rule "io_fromRob_commitVType_vtype_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_commitVType_vtype_valid" is not found in dut, it should satisfy rule "io_fromRob_commitVType_vtype_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_isResumeVType" is not found in dut, it should satisfy rule "io_fromRob_isResumeVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_walkToArchVType" is not found in dut, it should satisfy rule "io_fromRob_walkToArchVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_walkVType_bits_illegal" is not found in dut, it should satisfy rule "io_fromRob_walkVType_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_walkVType_bits_vlmul" is not found in dut, it should satisfy rule "io_fromRob_walkVType_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_walkVType_bits_vma" is not found in dut, it should satisfy rule "io_fromRob_walkVType_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_walkVType_bits_vsew" is not found in dut, it should satisfy rule "io_fromRob_walkVType_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_walkVType_bits_vta" is not found in dut, it should satisfy rule "io_fromRob_walkVType_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_walkVType_valid" is not found in dut, it should satisfy rule "io_fromRob_walkVType_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fusion_0" is not found in dut, it should satisfy rule "io_fusion_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fusion_1" is not found in dut, it should satisfy rule "io_fusion_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fusion_2" is not found in dut, it should satisfy rule "io_fusion_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fusion_3" is not found in dut, it should satisfy rule "io_fusion_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fusion_4" is not found in dut, it should satisfy rule "io_fusion_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_in_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_foldpc" is not found in dut, it should satisfy rule "io_in_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_ftqOffset" is not found in dut, it should satisfy rule "io_in_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_in_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_in_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_instr" is not found in dut, it should satisfy rule "io_in_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_in_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_in_0_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_in_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_in_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_pred_taken" is not found in dut, it should satisfy rule "io_in_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_trigger" is not found in dut, it should satisfy rule "io_in_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_ready" is not found in dut, it should satisfy rule "io_in_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_valid" is not found in dut, it should satisfy rule "io_in_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_in_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_foldpc" is not found in dut, it should satisfy rule "io_in_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_ftqOffset" is not found in dut, it should satisfy rule "io_in_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_in_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_in_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_instr" is not found in dut, it should satisfy rule "io_in_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_in_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_in_1_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_in_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_in_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_pred_taken" is not found in dut, it should satisfy rule "io_in_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_trigger" is not found in dut, it should satisfy rule "io_in_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_ready" is not found in dut, it should satisfy rule "io_in_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_valid" is not found in dut, it should satisfy rule "io_in_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_in_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_foldpc" is not found in dut, it should satisfy rule "io_in_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_ftqOffset" is not found in dut, it should satisfy rule "io_in_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_in_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_in_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_instr" is not found in dut, it should satisfy rule "io_in_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_in_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_in_2_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_in_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_in_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_pred_taken" is not found in dut, it should satisfy rule "io_in_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_trigger" is not found in dut, it should satisfy rule "io_in_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_ready" is not found in dut, it should satisfy rule "io_in_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_valid" is not found in dut, it should satisfy rule "io_in_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_in_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_foldpc" is not found in dut, it should satisfy rule "io_in_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_ftqOffset" is not found in dut, it should satisfy rule "io_in_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_in_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_in_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_instr" is not found in dut, it should satisfy rule "io_in_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_in_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_in_3_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_in_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_in_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_pred_taken" is not found in dut, it should satisfy rule "io_in_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_trigger" is not found in dut, it should satisfy rule "io_in_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_ready" is not found in dut, it should satisfy rule "io_in_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_valid" is not found in dut, it should satisfy rule "io_in_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_in_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_foldpc" is not found in dut, it should satisfy rule "io_in_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_ftqOffset" is not found in dut, it should satisfy rule "io_in_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_in_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_in_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_instr" is not found in dut, it should satisfy rule "io_in_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_in_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_in_4_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_in_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_in_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_pred_taken" is not found in dut, it should satisfy rule "io_in_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_trigger" is not found in dut, it should satisfy rule "io_in_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_ready" is not found in dut, it should satisfy rule "io_in_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_valid" is not found in dut, it should satisfy rule "io_in_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_in_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_foldpc" is not found in dut, it should satisfy rule "io_in_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_ftqOffset" is not found in dut, it should satisfy rule "io_in_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_in_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_in_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_instr" is not found in dut, it should satisfy rule "io_in_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_in_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_in_5_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_in_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_in_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_pred_taken" is not found in dut, it should satisfy rule "io_in_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_trigger" is not found in dut, it should satisfy rule "io_in_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_ready" is not found in dut, it should satisfy rule "io_in_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_valid" is not found in dut, it should satisfy rule "io_in_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_0_0_addr" is not found in dut, it should satisfy rule "io_intRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_0_0_hold" is not found in dut, it should satisfy rule "io_intRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_0_1_addr" is not found in dut, it should satisfy rule "io_intRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_0_1_hold" is not found in dut, it should satisfy rule "io_intRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_1_0_addr" is not found in dut, it should satisfy rule "io_intRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_1_0_hold" is not found in dut, it should satisfy rule "io_intRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_1_1_addr" is not found in dut, it should satisfy rule "io_intRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_1_1_hold" is not found in dut, it should satisfy rule "io_intRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_2_0_addr" is not found in dut, it should satisfy rule "io_intRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_2_0_hold" is not found in dut, it should satisfy rule "io_intRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_2_1_addr" is not found in dut, it should satisfy rule "io_intRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_2_1_hold" is not found in dut, it should satisfy rule "io_intRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_3_0_addr" is not found in dut, it should satisfy rule "io_intRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_3_0_hold" is not found in dut, it should satisfy rule "io_intRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_3_1_addr" is not found in dut, it should satisfy rule "io_intRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_3_1_hold" is not found in dut, it should satisfy rule "io_intRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_4_0_addr" is not found in dut, it should satisfy rule "io_intRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_4_0_hold" is not found in dut, it should satisfy rule "io_intRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_4_1_addr" is not found in dut, it should satisfy rule "io_intRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_4_1_hold" is not found in dut, it should satisfy rule "io_intRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_5_0_addr" is not found in dut, it should satisfy rule "io_intRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_5_0_hold" is not found in dut, it should satisfy rule "io_intRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_5_1_addr" is not found in dut, it should satisfy rule "io_intRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_5_1_hold" is not found in dut, it should satisfy rule "io_intRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_blockBackward" is not found in dut, it should satisfy rule "io_out_0_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_canRobCompress" is not found in dut, it should satisfy rule "io_out_0_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_commitType" is not found in dut, it should satisfy rule "io_out_0_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_out_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_firstUop" is not found in dut, it should satisfy rule "io_out_0_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_flushPipe" is not found in dut, it should satisfy rule "io_out_0_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_foldpc" is not found in dut, it should satisfy rule "io_out_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_fpWen" is not found in dut, it should satisfy rule "io_out_0_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_fpu_rm" is not found in dut, it should satisfy rule "io_out_0_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_fpu_typ" is not found in dut, it should satisfy rule "io_out_0_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_out_0_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_fpu_wflags" is not found in dut, it should satisfy rule "io_out_0_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_ftqOffset" is not found in dut, it should satisfy rule "io_out_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_out_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_out_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_fuOpType" is not found in dut, it should satisfy rule "io_out_0_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_fuType" is not found in dut, it should satisfy rule "io_out_0_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_imm" is not found in dut, it should satisfy rule "io_out_0_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_instr" is not found in dut, it should satisfy rule "io_out_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_out_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_isMove" is not found in dut, it should satisfy rule "io_out_0_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_isVset" is not found in dut, it should satisfy rule "io_out_0_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_isXSTrap" is not found in dut, it should satisfy rule "io_out_0_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_lastUop" is not found in dut, it should satisfy rule "io_out_0_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_ldest" is not found in dut, it should satisfy rule "io_out_0_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_lsrc_0" is not found in dut, it should satisfy rule "io_out_0_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_lsrc_1" is not found in dut, it should satisfy rule "io_out_0_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_lsrc_2" is not found in dut, it should satisfy rule "io_out_0_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_numWB" is not found in dut, it should satisfy rule "io_out_0_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_out_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_out_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_pred_taken" is not found in dut, it should satisfy rule "io_out_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_rfWen" is not found in dut, it should satisfy rule "io_out_0_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_selImm" is not found in dut, it should satisfy rule "io_out_0_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_srcType_0" is not found in dut, it should satisfy rule "io_out_0_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_srcType_1" is not found in dut, it should satisfy rule "io_out_0_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_srcType_2" is not found in dut, it should satisfy rule "io_out_0_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_srcType_3" is not found in dut, it should satisfy rule "io_out_0_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_srcType_4" is not found in dut, it should satisfy rule "io_out_0_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_trigger" is not found in dut, it should satisfy rule "io_out_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_uopIdx" is not found in dut, it should satisfy rule "io_out_0_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_uopSplitType" is not found in dut, it should satisfy rule "io_out_0_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_v0Wen" is not found in dut, it should satisfy rule "io_out_0_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vecWen" is not found in dut, it should satisfy rule "io_out_0_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vlWen" is not found in dut, it should satisfy rule "io_out_0_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vlsInstr" is not found in dut, it should satisfy rule "io_out_0_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_isExt" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_nf" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_specVill" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_specVma" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_specVta" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_veew" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_vill" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_vm" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_vma" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_vsew" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_vstart" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_vta" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_waitForward" is not found in dut, it should satisfy rule "io_out_0_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_wfflags" is not found in dut, it should satisfy rule "io_out_0_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_ready" is not found in dut, it should satisfy rule "io_out_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_valid" is not found in dut, it should satisfy rule "io_out_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_blockBackward" is not found in dut, it should satisfy rule "io_out_1_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_canRobCompress" is not found in dut, it should satisfy rule "io_out_1_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_commitType" is not found in dut, it should satisfy rule "io_out_1_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_out_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_firstUop" is not found in dut, it should satisfy rule "io_out_1_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_flushPipe" is not found in dut, it should satisfy rule "io_out_1_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_foldpc" is not found in dut, it should satisfy rule "io_out_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_fpWen" is not found in dut, it should satisfy rule "io_out_1_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_fpu_rm" is not found in dut, it should satisfy rule "io_out_1_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_fpu_typ" is not found in dut, it should satisfy rule "io_out_1_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_out_1_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_fpu_wflags" is not found in dut, it should satisfy rule "io_out_1_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_ftqOffset" is not found in dut, it should satisfy rule "io_out_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_out_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_out_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_fuOpType" is not found in dut, it should satisfy rule "io_out_1_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_fuType" is not found in dut, it should satisfy rule "io_out_1_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_imm" is not found in dut, it should satisfy rule "io_out_1_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_instr" is not found in dut, it should satisfy rule "io_out_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_out_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_isMove" is not found in dut, it should satisfy rule "io_out_1_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_isVset" is not found in dut, it should satisfy rule "io_out_1_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_isXSTrap" is not found in dut, it should satisfy rule "io_out_1_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_lastUop" is not found in dut, it should satisfy rule "io_out_1_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_ldest" is not found in dut, it should satisfy rule "io_out_1_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_lsrc_0" is not found in dut, it should satisfy rule "io_out_1_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_lsrc_1" is not found in dut, it should satisfy rule "io_out_1_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_lsrc_2" is not found in dut, it should satisfy rule "io_out_1_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_numWB" is not found in dut, it should satisfy rule "io_out_1_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_out_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_out_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_pred_taken" is not found in dut, it should satisfy rule "io_out_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_rfWen" is not found in dut, it should satisfy rule "io_out_1_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_selImm" is not found in dut, it should satisfy rule "io_out_1_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_srcType_0" is not found in dut, it should satisfy rule "io_out_1_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_srcType_1" is not found in dut, it should satisfy rule "io_out_1_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_srcType_2" is not found in dut, it should satisfy rule "io_out_1_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_srcType_3" is not found in dut, it should satisfy rule "io_out_1_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_srcType_4" is not found in dut, it should satisfy rule "io_out_1_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_trigger" is not found in dut, it should satisfy rule "io_out_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_uopIdx" is not found in dut, it should satisfy rule "io_out_1_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_uopSplitType" is not found in dut, it should satisfy rule "io_out_1_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_v0Wen" is not found in dut, it should satisfy rule "io_out_1_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vecWen" is not found in dut, it should satisfy rule "io_out_1_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vlWen" is not found in dut, it should satisfy rule "io_out_1_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vlsInstr" is not found in dut, it should satisfy rule "io_out_1_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_isExt" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_nf" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_specVill" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_specVma" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_specVta" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_veew" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_vill" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_vm" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_vma" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_vsew" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_vstart" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_vta" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_waitForward" is not found in dut, it should satisfy rule "io_out_1_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_wfflags" is not found in dut, it should satisfy rule "io_out_1_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_ready" is not found in dut, it should satisfy rule "io_out_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_valid" is not found in dut, it should satisfy rule "io_out_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_blockBackward" is not found in dut, it should satisfy rule "io_out_2_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_canRobCompress" is not found in dut, it should satisfy rule "io_out_2_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_commitType" is not found in dut, it should satisfy rule "io_out_2_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_out_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_firstUop" is not found in dut, it should satisfy rule "io_out_2_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_flushPipe" is not found in dut, it should satisfy rule "io_out_2_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_foldpc" is not found in dut, it should satisfy rule "io_out_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_fpWen" is not found in dut, it should satisfy rule "io_out_2_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_fpu_rm" is not found in dut, it should satisfy rule "io_out_2_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_fpu_typ" is not found in dut, it should satisfy rule "io_out_2_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_out_2_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_fpu_wflags" is not found in dut, it should satisfy rule "io_out_2_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_ftqOffset" is not found in dut, it should satisfy rule "io_out_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_out_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_out_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_fuOpType" is not found in dut, it should satisfy rule "io_out_2_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_fuType" is not found in dut, it should satisfy rule "io_out_2_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_imm" is not found in dut, it should satisfy rule "io_out_2_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_instr" is not found in dut, it should satisfy rule "io_out_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_out_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_isMove" is not found in dut, it should satisfy rule "io_out_2_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_isVset" is not found in dut, it should satisfy rule "io_out_2_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_isXSTrap" is not found in dut, it should satisfy rule "io_out_2_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_lastUop" is not found in dut, it should satisfy rule "io_out_2_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_ldest" is not found in dut, it should satisfy rule "io_out_2_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_lsrc_0" is not found in dut, it should satisfy rule "io_out_2_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_lsrc_1" is not found in dut, it should satisfy rule "io_out_2_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_lsrc_2" is not found in dut, it should satisfy rule "io_out_2_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_numWB" is not found in dut, it should satisfy rule "io_out_2_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_out_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_out_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_pred_taken" is not found in dut, it should satisfy rule "io_out_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_rfWen" is not found in dut, it should satisfy rule "io_out_2_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_selImm" is not found in dut, it should satisfy rule "io_out_2_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_srcType_0" is not found in dut, it should satisfy rule "io_out_2_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_srcType_1" is not found in dut, it should satisfy rule "io_out_2_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_srcType_2" is not found in dut, it should satisfy rule "io_out_2_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_srcType_3" is not found in dut, it should satisfy rule "io_out_2_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_srcType_4" is not found in dut, it should satisfy rule "io_out_2_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_trigger" is not found in dut, it should satisfy rule "io_out_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_uopIdx" is not found in dut, it should satisfy rule "io_out_2_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_uopSplitType" is not found in dut, it should satisfy rule "io_out_2_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_v0Wen" is not found in dut, it should satisfy rule "io_out_2_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vecWen" is not found in dut, it should satisfy rule "io_out_2_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vlWen" is not found in dut, it should satisfy rule "io_out_2_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vlsInstr" is not found in dut, it should satisfy rule "io_out_2_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_isExt" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_nf" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_specVill" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_specVma" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_specVta" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_veew" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_vill" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_vm" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_vma" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_vsew" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_vstart" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_vta" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_waitForward" is not found in dut, it should satisfy rule "io_out_2_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_wfflags" is not found in dut, it should satisfy rule "io_out_2_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_ready" is not found in dut, it should satisfy rule "io_out_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_valid" is not found in dut, it should satisfy rule "io_out_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_blockBackward" is not found in dut, it should satisfy rule "io_out_3_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_canRobCompress" is not found in dut, it should satisfy rule "io_out_3_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_commitType" is not found in dut, it should satisfy rule "io_out_3_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_out_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_firstUop" is not found in dut, it should satisfy rule "io_out_3_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_flushPipe" is not found in dut, it should satisfy rule "io_out_3_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_foldpc" is not found in dut, it should satisfy rule "io_out_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_fpWen" is not found in dut, it should satisfy rule "io_out_3_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_fpu_rm" is not found in dut, it should satisfy rule "io_out_3_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_fpu_typ" is not found in dut, it should satisfy rule "io_out_3_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_out_3_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_fpu_wflags" is not found in dut, it should satisfy rule "io_out_3_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_ftqOffset" is not found in dut, it should satisfy rule "io_out_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_out_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_out_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_fuOpType" is not found in dut, it should satisfy rule "io_out_3_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_fuType" is not found in dut, it should satisfy rule "io_out_3_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_imm" is not found in dut, it should satisfy rule "io_out_3_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_instr" is not found in dut, it should satisfy rule "io_out_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_out_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_isMove" is not found in dut, it should satisfy rule "io_out_3_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_isVset" is not found in dut, it should satisfy rule "io_out_3_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_isXSTrap" is not found in dut, it should satisfy rule "io_out_3_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_lastUop" is not found in dut, it should satisfy rule "io_out_3_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_ldest" is not found in dut, it should satisfy rule "io_out_3_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_lsrc_0" is not found in dut, it should satisfy rule "io_out_3_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_lsrc_1" is not found in dut, it should satisfy rule "io_out_3_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_lsrc_2" is not found in dut, it should satisfy rule "io_out_3_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_numWB" is not found in dut, it should satisfy rule "io_out_3_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_out_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_out_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_pred_taken" is not found in dut, it should satisfy rule "io_out_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_rfWen" is not found in dut, it should satisfy rule "io_out_3_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_selImm" is not found in dut, it should satisfy rule "io_out_3_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_srcType_0" is not found in dut, it should satisfy rule "io_out_3_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_srcType_1" is not found in dut, it should satisfy rule "io_out_3_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_srcType_2" is not found in dut, it should satisfy rule "io_out_3_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_srcType_3" is not found in dut, it should satisfy rule "io_out_3_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_srcType_4" is not found in dut, it should satisfy rule "io_out_3_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_trigger" is not found in dut, it should satisfy rule "io_out_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_uopIdx" is not found in dut, it should satisfy rule "io_out_3_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_uopSplitType" is not found in dut, it should satisfy rule "io_out_3_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_v0Wen" is not found in dut, it should satisfy rule "io_out_3_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vecWen" is not found in dut, it should satisfy rule "io_out_3_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vlWen" is not found in dut, it should satisfy rule "io_out_3_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vlsInstr" is not found in dut, it should satisfy rule "io_out_3_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_isExt" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_nf" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_specVill" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_specVma" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_specVta" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_veew" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_vill" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_vm" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_vma" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_vsew" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_vstart" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_vta" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_waitForward" is not found in dut, it should satisfy rule "io_out_3_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_wfflags" is not found in dut, it should satisfy rule "io_out_3_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_ready" is not found in dut, it should satisfy rule "io_out_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_valid" is not found in dut, it should satisfy rule "io_out_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_blockBackward" is not found in dut, it should satisfy rule "io_out_4_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_canRobCompress" is not found in dut, it should satisfy rule "io_out_4_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_commitType" is not found in dut, it should satisfy rule "io_out_4_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_out_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_firstUop" is not found in dut, it should satisfy rule "io_out_4_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_flushPipe" is not found in dut, it should satisfy rule "io_out_4_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_foldpc" is not found in dut, it should satisfy rule "io_out_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_fpWen" is not found in dut, it should satisfy rule "io_out_4_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_fpu_rm" is not found in dut, it should satisfy rule "io_out_4_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_fpu_typ" is not found in dut, it should satisfy rule "io_out_4_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_out_4_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_fpu_wflags" is not found in dut, it should satisfy rule "io_out_4_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_ftqOffset" is not found in dut, it should satisfy rule "io_out_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_out_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_out_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_fuOpType" is not found in dut, it should satisfy rule "io_out_4_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_fuType" is not found in dut, it should satisfy rule "io_out_4_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_imm" is not found in dut, it should satisfy rule "io_out_4_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_instr" is not found in dut, it should satisfy rule "io_out_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_out_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_isMove" is not found in dut, it should satisfy rule "io_out_4_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_isVset" is not found in dut, it should satisfy rule "io_out_4_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_isXSTrap" is not found in dut, it should satisfy rule "io_out_4_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_lastUop" is not found in dut, it should satisfy rule "io_out_4_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_ldest" is not found in dut, it should satisfy rule "io_out_4_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_lsrc_0" is not found in dut, it should satisfy rule "io_out_4_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_lsrc_1" is not found in dut, it should satisfy rule "io_out_4_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_lsrc_2" is not found in dut, it should satisfy rule "io_out_4_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_numWB" is not found in dut, it should satisfy rule "io_out_4_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_out_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_out_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_pred_taken" is not found in dut, it should satisfy rule "io_out_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_rfWen" is not found in dut, it should satisfy rule "io_out_4_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_selImm" is not found in dut, it should satisfy rule "io_out_4_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_srcType_0" is not found in dut, it should satisfy rule "io_out_4_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_srcType_1" is not found in dut, it should satisfy rule "io_out_4_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_srcType_2" is not found in dut, it should satisfy rule "io_out_4_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_srcType_3" is not found in dut, it should satisfy rule "io_out_4_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_srcType_4" is not found in dut, it should satisfy rule "io_out_4_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_trigger" is not found in dut, it should satisfy rule "io_out_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_uopIdx" is not found in dut, it should satisfy rule "io_out_4_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_uopSplitType" is not found in dut, it should satisfy rule "io_out_4_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_v0Wen" is not found in dut, it should satisfy rule "io_out_4_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vecWen" is not found in dut, it should satisfy rule "io_out_4_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vlWen" is not found in dut, it should satisfy rule "io_out_4_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vlsInstr" is not found in dut, it should satisfy rule "io_out_4_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_isExt" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_nf" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_specVill" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_specVma" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_specVta" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_veew" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_vill" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_vm" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_vma" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_vsew" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_vstart" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_vta" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_waitForward" is not found in dut, it should satisfy rule "io_out_4_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_wfflags" is not found in dut, it should satisfy rule "io_out_4_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_ready" is not found in dut, it should satisfy rule "io_out_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_valid" is not found in dut, it should satisfy rule "io_out_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_blockBackward" is not found in dut, it should satisfy rule "io_out_5_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_canRobCompress" is not found in dut, it should satisfy rule "io_out_5_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_commitType" is not found in dut, it should satisfy rule "io_out_5_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_out_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_firstUop" is not found in dut, it should satisfy rule "io_out_5_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_flushPipe" is not found in dut, it should satisfy rule "io_out_5_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_foldpc" is not found in dut, it should satisfy rule "io_out_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_fpWen" is not found in dut, it should satisfy rule "io_out_5_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_fpu_rm" is not found in dut, it should satisfy rule "io_out_5_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_fpu_typ" is not found in dut, it should satisfy rule "io_out_5_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_out_5_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_fpu_wflags" is not found in dut, it should satisfy rule "io_out_5_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_ftqOffset" is not found in dut, it should satisfy rule "io_out_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_out_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_out_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_fuOpType" is not found in dut, it should satisfy rule "io_out_5_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_fuType" is not found in dut, it should satisfy rule "io_out_5_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_imm" is not found in dut, it should satisfy rule "io_out_5_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_instr" is not found in dut, it should satisfy rule "io_out_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_out_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_isMove" is not found in dut, it should satisfy rule "io_out_5_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_isVset" is not found in dut, it should satisfy rule "io_out_5_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_isXSTrap" is not found in dut, it should satisfy rule "io_out_5_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_lastUop" is not found in dut, it should satisfy rule "io_out_5_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_ldest" is not found in dut, it should satisfy rule "io_out_5_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_lsrc_0" is not found in dut, it should satisfy rule "io_out_5_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_lsrc_1" is not found in dut, it should satisfy rule "io_out_5_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_lsrc_2" is not found in dut, it should satisfy rule "io_out_5_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_numWB" is not found in dut, it should satisfy rule "io_out_5_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_out_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_out_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_pred_taken" is not found in dut, it should satisfy rule "io_out_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_rfWen" is not found in dut, it should satisfy rule "io_out_5_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_selImm" is not found in dut, it should satisfy rule "io_out_5_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_srcType_0" is not found in dut, it should satisfy rule "io_out_5_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_srcType_1" is not found in dut, it should satisfy rule "io_out_5_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_srcType_2" is not found in dut, it should satisfy rule "io_out_5_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_srcType_3" is not found in dut, it should satisfy rule "io_out_5_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_srcType_4" is not found in dut, it should satisfy rule "io_out_5_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_trigger" is not found in dut, it should satisfy rule "io_out_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_uopIdx" is not found in dut, it should satisfy rule "io_out_5_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_uopSplitType" is not found in dut, it should satisfy rule "io_out_5_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_v0Wen" is not found in dut, it should satisfy rule "io_out_5_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vecWen" is not found in dut, it should satisfy rule "io_out_5_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vlWen" is not found in dut, it should satisfy rule "io_out_5_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vlsInstr" is not found in dut, it should satisfy rule "io_out_5_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_isExt" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_nf" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_specVill" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_specVma" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_specVta" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_veew" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_vill" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_vm" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_vma" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_vsew" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_vstart" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_vta" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_waitForward" is not found in dut, it should satisfy rule "io_out_5_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_wfflags" is not found in dut, it should satisfy rule "io_out_5_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_ready" is not found in dut, it should satisfy rule "io_out_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_valid" is not found in dut, it should satisfy rule "io_out_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.perf_0_value" is not found in dut, it should satisfy rule "io_perf_0_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.perf_1_value" is not found in dut, it should satisfy rule "io_perf_1_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.perf_2_value" is not found in dut, it should satisfy rule "io_perf_2_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.perf_3_value" is not found in dut, it should satisfy rule "io_perf_3_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.redirect" is not found in dut, it should satisfy rule "io_redirect"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.toCSR_trapInstInfo_bits_ftqOffset" is not found in dut, it should satisfy rule "io_toCSR_trapInstInfo_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.toCSR_trapInstInfo_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_toCSR_trapInstInfo_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.toCSR_trapInstInfo_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_toCSR_trapInstInfo_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.toCSR_trapInstInfo_bits_instr" is not found in dut, it should satisfy rule "io_toCSR_trapInstInfo_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.toCSR_trapInstInfo_valid" is not found in dut, it should satisfy rule "io_toCSR_trapInstInfo_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_0_0_addr" is not found in dut, it should satisfy rule "io_vecRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_0_0_hold" is not found in dut, it should satisfy rule "io_vecRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_0_1_addr" is not found in dut, it should satisfy rule "io_vecRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_0_1_hold" is not found in dut, it should satisfy rule "io_vecRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_0_2_addr" is not found in dut, it should satisfy rule "io_vecRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_0_2_hold" is not found in dut, it should satisfy rule "io_vecRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_1_0_addr" is not found in dut, it should satisfy rule "io_vecRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_1_0_hold" is not found in dut, it should satisfy rule "io_vecRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_1_1_addr" is not found in dut, it should satisfy rule "io_vecRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_1_1_hold" is not found in dut, it should satisfy rule "io_vecRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_1_2_addr" is not found in dut, it should satisfy rule "io_vecRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_1_2_hold" is not found in dut, it should satisfy rule "io_vecRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_2_0_addr" is not found in dut, it should satisfy rule "io_vecRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_2_0_hold" is not found in dut, it should satisfy rule "io_vecRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_2_1_addr" is not found in dut, it should satisfy rule "io_vecRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_2_1_hold" is not found in dut, it should satisfy rule "io_vecRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_2_2_addr" is not found in dut, it should satisfy rule "io_vecRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_2_2_hold" is not found in dut, it should satisfy rule "io_vecRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_3_0_addr" is not found in dut, it should satisfy rule "io_vecRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_3_0_hold" is not found in dut, it should satisfy rule "io_vecRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_3_1_addr" is not found in dut, it should satisfy rule "io_vecRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_3_1_hold" is not found in dut, it should satisfy rule "io_vecRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_3_2_addr" is not found in dut, it should satisfy rule "io_vecRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_3_2_hold" is not found in dut, it should satisfy rule "io_vecRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_4_0_addr" is not found in dut, it should satisfy rule "io_vecRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_4_0_hold" is not found in dut, it should satisfy rule "io_vecRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_4_1_addr" is not found in dut, it should satisfy rule "io_vecRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_4_1_hold" is not found in dut, it should satisfy rule "io_vecRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_4_2_addr" is not found in dut, it should satisfy rule "io_vecRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_4_2_hold" is not found in dut, it should satisfy rule "io_vecRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_5_0_addr" is not found in dut, it should satisfy rule "io_vecRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_5_0_hold" is not found in dut, it should satisfy rule "io_vecRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_5_1_addr" is not found in dut, it should satisfy rule "io_vecRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_5_1_hold" is not found in dut, it should satisfy rule "io_vecRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_5_2_addr" is not found in dut, it should satisfy rule "io_vecRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_5_2_hold" is not found in dut, it should satisfy rule "io_vecRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vsetvlVType_illegal" is not found in dut, it should satisfy rule "io_vsetvlVType_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vsetvlVType_vlmul" is not found in dut, it should satisfy rule "io_vsetvlVType_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vsetvlVType_vma" is not found in dut, it should satisfy rule "io_vsetvlVType_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vsetvlVType_vsew" is not found in dut, it should satisfy rule "io_vsetvlVType_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vsetvlVType_vta" is not found in dut, it should satisfy rule "io_vsetvlVType_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vstart" is not found in dut, it should satisfy rule "io_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_blockBackward" is not found in dut, it should satisfy rule "io_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_canRobCompress" is not found in dut, it should satisfy rule "io_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_commitType" is not found in dut, it should satisfy rule "io_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_firstUop" is not found in dut, it should satisfy rule "io_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_flushPipe" is not found in dut, it should satisfy rule "io_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpWen" is not found in dut, it should satisfy rule "io_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_rm" is not found in dut, it should satisfy rule "io_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typ" is not found in dut, it should satisfy rule "io_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_wflags" is not found in dut, it should satisfy rule "io_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuOpType" is not found in dut, it should satisfy rule "io_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuType" is not found in dut, it should satisfy rule "io_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_imm" is not found in dut, it should satisfy rule "io_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isMove" is not found in dut, it should satisfy rule "io_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isVset" is not found in dut, it should satisfy rule "io_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isXSTrap" is not found in dut, it should satisfy rule "io_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lastUop" is not found in dut, it should satisfy rule "io_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ldest" is not found in dut, it should satisfy rule "io_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_0" is not found in dut, it should satisfy rule "io_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_1" is not found in dut, it should satisfy rule "io_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_2" is not found in dut, it should satisfy rule "io_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_numWB" is not found in dut, it should satisfy rule "io_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_rfWen" is not found in dut, it should satisfy rule "io_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_selImm" is not found in dut, it should satisfy rule "io_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_0" is not found in dut, it should satisfy rule "io_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_1" is not found in dut, it should satisfy rule "io_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_2" is not found in dut, it should satisfy rule "io_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_3" is not found in dut, it should satisfy rule "io_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_4" is not found in dut, it should satisfy rule "io_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopIdx" is not found in dut, it should satisfy rule "io_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopSplitType" is not found in dut, it should satisfy rule "io_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_v0Wen" is not found in dut, it should satisfy rule "io_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vecWen" is not found in dut, it should satisfy rule "io_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlWen" is not found in dut, it should satisfy rule "io_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlsInstr" is not found in dut, it should satisfy rule "io_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isExt" is not found in dut, it should satisfy rule "io_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_nf" is not found in dut, it should satisfy rule "io_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVill" is not found in dut, it should satisfy rule "io_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVma" is not found in dut, it should satisfy rule "io_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVta" is not found in dut, it should satisfy rule "io_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_veew" is not found in dut, it should satisfy rule "io_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vill" is not found in dut, it should satisfy rule "io_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vm" is not found in dut, it should satisfy rule "io_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vma" is not found in dut, it should satisfy rule "io_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vsew" is not found in dut, it should satisfy rule "io_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vstart" is not found in dut, it should satisfy rule "io_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vta" is not found in dut, it should satisfy rule "io_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_waitForward" is not found in dut, it should satisfy rule "io_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_wfflags" is not found in dut, it should satisfy rule "io_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_blockBackward" is not found in dut, it should satisfy rule "io_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_canRobCompress" is not found in dut, it should satisfy rule "io_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_commitType" is not found in dut, it should satisfy rule "io_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_firstUop" is not found in dut, it should satisfy rule "io_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_flushPipe" is not found in dut, it should satisfy rule "io_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpWen" is not found in dut, it should satisfy rule "io_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_rm" is not found in dut, it should satisfy rule "io_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typ" is not found in dut, it should satisfy rule "io_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_wflags" is not found in dut, it should satisfy rule "io_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuOpType" is not found in dut, it should satisfy rule "io_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuType" is not found in dut, it should satisfy rule "io_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_imm" is not found in dut, it should satisfy rule "io_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isMove" is not found in dut, it should satisfy rule "io_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isVset" is not found in dut, it should satisfy rule "io_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isXSTrap" is not found in dut, it should satisfy rule "io_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lastUop" is not found in dut, it should satisfy rule "io_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ldest" is not found in dut, it should satisfy rule "io_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_0" is not found in dut, it should satisfy rule "io_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_1" is not found in dut, it should satisfy rule "io_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_2" is not found in dut, it should satisfy rule "io_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_numWB" is not found in dut, it should satisfy rule "io_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_rfWen" is not found in dut, it should satisfy rule "io_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_selImm" is not found in dut, it should satisfy rule "io_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_0" is not found in dut, it should satisfy rule "io_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_1" is not found in dut, it should satisfy rule "io_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_2" is not found in dut, it should satisfy rule "io_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_3" is not found in dut, it should satisfy rule "io_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_4" is not found in dut, it should satisfy rule "io_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopIdx" is not found in dut, it should satisfy rule "io_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopSplitType" is not found in dut, it should satisfy rule "io_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_v0Wen" is not found in dut, it should satisfy rule "io_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vecWen" is not found in dut, it should satisfy rule "io_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlWen" is not found in dut, it should satisfy rule "io_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlsInstr" is not found in dut, it should satisfy rule "io_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isExt" is not found in dut, it should satisfy rule "io_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_nf" is not found in dut, it should satisfy rule "io_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVill" is not found in dut, it should satisfy rule "io_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVma" is not found in dut, it should satisfy rule "io_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVta" is not found in dut, it should satisfy rule "io_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_veew" is not found in dut, it should satisfy rule "io_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vill" is not found in dut, it should satisfy rule "io_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vm" is not found in dut, it should satisfy rule "io_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vma" is not found in dut, it should satisfy rule "io_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vsew" is not found in dut, it should satisfy rule "io_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vstart" is not found in dut, it should satisfy rule "io_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vta" is not found in dut, it should satisfy rule "io_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_waitForward" is not found in dut, it should satisfy rule "io_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_wfflags" is not found in dut, it should satisfy rule "io_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_blockBackward" is not found in dut, it should satisfy rule "io_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_canRobCompress" is not found in dut, it should satisfy rule "io_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_commitType" is not found in dut, it should satisfy rule "io_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_firstUop" is not found in dut, it should satisfy rule "io_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_flushPipe" is not found in dut, it should satisfy rule "io_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpWen" is not found in dut, it should satisfy rule "io_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_rm" is not found in dut, it should satisfy rule "io_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typ" is not found in dut, it should satisfy rule "io_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_wflags" is not found in dut, it should satisfy rule "io_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuOpType" is not found in dut, it should satisfy rule "io_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuType" is not found in dut, it should satisfy rule "io_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_imm" is not found in dut, it should satisfy rule "io_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isMove" is not found in dut, it should satisfy rule "io_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isVset" is not found in dut, it should satisfy rule "io_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isXSTrap" is not found in dut, it should satisfy rule "io_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lastUop" is not found in dut, it should satisfy rule "io_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ldest" is not found in dut, it should satisfy rule "io_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_0" is not found in dut, it should satisfy rule "io_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_1" is not found in dut, it should satisfy rule "io_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_2" is not found in dut, it should satisfy rule "io_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_numWB" is not found in dut, it should satisfy rule "io_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_rfWen" is not found in dut, it should satisfy rule "io_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_selImm" is not found in dut, it should satisfy rule "io_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_0" is not found in dut, it should satisfy rule "io_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_1" is not found in dut, it should satisfy rule "io_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_2" is not found in dut, it should satisfy rule "io_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_3" is not found in dut, it should satisfy rule "io_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_4" is not found in dut, it should satisfy rule "io_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopIdx" is not found in dut, it should satisfy rule "io_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopSplitType" is not found in dut, it should satisfy rule "io_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_v0Wen" is not found in dut, it should satisfy rule "io_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vecWen" is not found in dut, it should satisfy rule "io_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlWen" is not found in dut, it should satisfy rule "io_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlsInstr" is not found in dut, it should satisfy rule "io_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isExt" is not found in dut, it should satisfy rule "io_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_nf" is not found in dut, it should satisfy rule "io_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVill" is not found in dut, it should satisfy rule "io_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVma" is not found in dut, it should satisfy rule "io_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVta" is not found in dut, it should satisfy rule "io_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_veew" is not found in dut, it should satisfy rule "io_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vill" is not found in dut, it should satisfy rule "io_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vm" is not found in dut, it should satisfy rule "io_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vma" is not found in dut, it should satisfy rule "io_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vsew" is not found in dut, it should satisfy rule "io_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vstart" is not found in dut, it should satisfy rule "io_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vta" is not found in dut, it should satisfy rule "io_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_waitForward" is not found in dut, it should satisfy rule "io_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_wfflags" is not found in dut, it should satisfy rule "io_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_blockBackward" is not found in dut, it should satisfy rule "io_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_canRobCompress" is not found in dut, it should satisfy rule "io_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_commitType" is not found in dut, it should satisfy rule "io_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_firstUop" is not found in dut, it should satisfy rule "io_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_flushPipe" is not found in dut, it should satisfy rule "io_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpWen" is not found in dut, it should satisfy rule "io_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_rm" is not found in dut, it should satisfy rule "io_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typ" is not found in dut, it should satisfy rule "io_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_wflags" is not found in dut, it should satisfy rule "io_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuOpType" is not found in dut, it should satisfy rule "io_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuType" is not found in dut, it should satisfy rule "io_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_imm" is not found in dut, it should satisfy rule "io_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isMove" is not found in dut, it should satisfy rule "io_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isVset" is not found in dut, it should satisfy rule "io_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isXSTrap" is not found in dut, it should satisfy rule "io_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lastUop" is not found in dut, it should satisfy rule "io_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ldest" is not found in dut, it should satisfy rule "io_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_0" is not found in dut, it should satisfy rule "io_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_1" is not found in dut, it should satisfy rule "io_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_2" is not found in dut, it should satisfy rule "io_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_numWB" is not found in dut, it should satisfy rule "io_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_rfWen" is not found in dut, it should satisfy rule "io_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_selImm" is not found in dut, it should satisfy rule "io_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_0" is not found in dut, it should satisfy rule "io_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_1" is not found in dut, it should satisfy rule "io_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_2" is not found in dut, it should satisfy rule "io_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_3" is not found in dut, it should satisfy rule "io_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_4" is not found in dut, it should satisfy rule "io_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopIdx" is not found in dut, it should satisfy rule "io_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopSplitType" is not found in dut, it should satisfy rule "io_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_v0Wen" is not found in dut, it should satisfy rule "io_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vecWen" is not found in dut, it should satisfy rule "io_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlWen" is not found in dut, it should satisfy rule "io_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlsInstr" is not found in dut, it should satisfy rule "io_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isExt" is not found in dut, it should satisfy rule "io_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_nf" is not found in dut, it should satisfy rule "io_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVill" is not found in dut, it should satisfy rule "io_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVma" is not found in dut, it should satisfy rule "io_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVta" is not found in dut, it should satisfy rule "io_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_veew" is not found in dut, it should satisfy rule "io_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vill" is not found in dut, it should satisfy rule "io_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vm" is not found in dut, it should satisfy rule "io_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vma" is not found in dut, it should satisfy rule "io_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vsew" is not found in dut, it should satisfy rule "io_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vstart" is not found in dut, it should satisfy rule "io_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vta" is not found in dut, it should satisfy rule "io_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_waitForward" is not found in dut, it should satisfy rule "io_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_wfflags" is not found in dut, it should satisfy rule "io_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_blockBackward" is not found in dut, it should satisfy rule "io_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_canRobCompress" is not found in dut, it should satisfy rule "io_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_commitType" is not found in dut, it should satisfy rule "io_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_firstUop" is not found in dut, it should satisfy rule "io_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_flushPipe" is not found in dut, it should satisfy rule "io_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpWen" is not found in dut, it should satisfy rule "io_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_rm" is not found in dut, it should satisfy rule "io_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typ" is not found in dut, it should satisfy rule "io_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_wflags" is not found in dut, it should satisfy rule "io_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuOpType" is not found in dut, it should satisfy rule "io_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuType" is not found in dut, it should satisfy rule "io_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_imm" is not found in dut, it should satisfy rule "io_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isMove" is not found in dut, it should satisfy rule "io_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isVset" is not found in dut, it should satisfy rule "io_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isXSTrap" is not found in dut, it should satisfy rule "io_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lastUop" is not found in dut, it should satisfy rule "io_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ldest" is not found in dut, it should satisfy rule "io_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_0" is not found in dut, it should satisfy rule "io_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_1" is not found in dut, it should satisfy rule "io_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_2" is not found in dut, it should satisfy rule "io_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_numWB" is not found in dut, it should satisfy rule "io_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_rfWen" is not found in dut, it should satisfy rule "io_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_selImm" is not found in dut, it should satisfy rule "io_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_0" is not found in dut, it should satisfy rule "io_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_1" is not found in dut, it should satisfy rule "io_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_2" is not found in dut, it should satisfy rule "io_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_3" is not found in dut, it should satisfy rule "io_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_4" is not found in dut, it should satisfy rule "io_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopIdx" is not found in dut, it should satisfy rule "io_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopSplitType" is not found in dut, it should satisfy rule "io_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_v0Wen" is not found in dut, it should satisfy rule "io_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vecWen" is not found in dut, it should satisfy rule "io_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlWen" is not found in dut, it should satisfy rule "io_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlsInstr" is not found in dut, it should satisfy rule "io_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isExt" is not found in dut, it should satisfy rule "io_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_nf" is not found in dut, it should satisfy rule "io_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVill" is not found in dut, it should satisfy rule "io_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVma" is not found in dut, it should satisfy rule "io_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVta" is not found in dut, it should satisfy rule "io_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_veew" is not found in dut, it should satisfy rule "io_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vill" is not found in dut, it should satisfy rule "io_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vm" is not found in dut, it should satisfy rule "io_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vma" is not found in dut, it should satisfy rule "io_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vsew" is not found in dut, it should satisfy rule "io_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vstart" is not found in dut, it should satisfy rule "io_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vta" is not found in dut, it should satisfy rule "io_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_waitForward" is not found in dut, it should satisfy rule "io_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_wfflags" is not found in dut, it should satisfy rule "io_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_blockBackward" is not found in dut, it should satisfy rule "io_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_canRobCompress" is not found in dut, it should satisfy rule "io_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_commitType" is not found in dut, it should satisfy rule "io_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_firstUop" is not found in dut, it should satisfy rule "io_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_flushPipe" is not found in dut, it should satisfy rule "io_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpWen" is not found in dut, it should satisfy rule "io_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_rm" is not found in dut, it should satisfy rule "io_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typ" is not found in dut, it should satisfy rule "io_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_wflags" is not found in dut, it should satisfy rule "io_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuOpType" is not found in dut, it should satisfy rule "io_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuType" is not found in dut, it should satisfy rule "io_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_imm" is not found in dut, it should satisfy rule "io_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isMove" is not found in dut, it should satisfy rule "io_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isVset" is not found in dut, it should satisfy rule "io_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isXSTrap" is not found in dut, it should satisfy rule "io_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lastUop" is not found in dut, it should satisfy rule "io_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ldest" is not found in dut, it should satisfy rule "io_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_0" is not found in dut, it should satisfy rule "io_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_1" is not found in dut, it should satisfy rule "io_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_2" is not found in dut, it should satisfy rule "io_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_numWB" is not found in dut, it should satisfy rule "io_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_rfWen" is not found in dut, it should satisfy rule "io_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_selImm" is not found in dut, it should satisfy rule "io_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_0" is not found in dut, it should satisfy rule "io_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_1" is not found in dut, it should satisfy rule "io_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_2" is not found in dut, it should satisfy rule "io_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_3" is not found in dut, it should satisfy rule "io_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_4" is not found in dut, it should satisfy rule "io_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopIdx" is not found in dut, it should satisfy rule "io_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopSplitType" is not found in dut, it should satisfy rule "io_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_v0Wen" is not found in dut, it should satisfy rule "io_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vecWen" is not found in dut, it should satisfy rule "io_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlWen" is not found in dut, it should satisfy rule "io_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlsInstr" is not found in dut, it should satisfy rule "io_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isExt" is not found in dut, it should satisfy rule "io_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_nf" is not found in dut, it should satisfy rule "io_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVill" is not found in dut, it should satisfy rule "io_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVma" is not found in dut, it should satisfy rule "io_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVta" is not found in dut, it should satisfy rule "io_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_veew" is not found in dut, it should satisfy rule "io_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vill" is not found in dut, it should satisfy rule "io_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vm" is not found in dut, it should satisfy rule "io_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vma" is not found in dut, it should satisfy rule "io_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vsew" is not found in dut, it should satisfy rule "io_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vstart" is not found in dut, it should satisfy rule "io_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vta" is not found in dut, it should satisfy rule "io_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_waitForward" is not found in dut, it should satisfy rule "io_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_wfflags" is not found in dut, it should satisfy rule "io_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.csrCtrl_singlestep" is not found in dut, it should satisfy rule "io_csrCtrl_singlestep"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_0_0_addr" is not found in dut, it should satisfy rule "io_fpRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_0_0_hold" is not found in dut, it should satisfy rule "io_fpRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_0_1_addr" is not found in dut, it should satisfy rule "io_fpRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_0_1_hold" is not found in dut, it should satisfy rule "io_fpRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_0_2_addr" is not found in dut, it should satisfy rule "io_fpRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_0_2_hold" is not found in dut, it should satisfy rule "io_fpRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_1_0_addr" is not found in dut, it should satisfy rule "io_fpRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_1_0_hold" is not found in dut, it should satisfy rule "io_fpRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_1_1_addr" is not found in dut, it should satisfy rule "io_fpRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_1_1_hold" is not found in dut, it should satisfy rule "io_fpRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_1_2_addr" is not found in dut, it should satisfy rule "io_fpRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_1_2_hold" is not found in dut, it should satisfy rule "io_fpRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_2_0_addr" is not found in dut, it should satisfy rule "io_fpRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_2_0_hold" is not found in dut, it should satisfy rule "io_fpRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_2_1_addr" is not found in dut, it should satisfy rule "io_fpRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_2_1_hold" is not found in dut, it should satisfy rule "io_fpRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_2_2_addr" is not found in dut, it should satisfy rule "io_fpRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_2_2_hold" is not found in dut, it should satisfy rule "io_fpRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_3_0_addr" is not found in dut, it should satisfy rule "io_fpRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_3_0_hold" is not found in dut, it should satisfy rule "io_fpRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_3_1_addr" is not found in dut, it should satisfy rule "io_fpRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_3_1_hold" is not found in dut, it should satisfy rule "io_fpRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_3_2_addr" is not found in dut, it should satisfy rule "io_fpRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_3_2_hold" is not found in dut, it should satisfy rule "io_fpRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_4_0_addr" is not found in dut, it should satisfy rule "io_fpRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_4_0_hold" is not found in dut, it should satisfy rule "io_fpRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_4_1_addr" is not found in dut, it should satisfy rule "io_fpRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_4_1_hold" is not found in dut, it should satisfy rule "io_fpRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_4_2_addr" is not found in dut, it should satisfy rule "io_fpRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_4_2_hold" is not found in dut, it should satisfy rule "io_fpRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_5_0_addr" is not found in dut, it should satisfy rule "io_fpRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_5_0_hold" is not found in dut, it should satisfy rule "io_fpRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_5_1_addr" is not found in dut, it should satisfy rule "io_fpRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_5_1_hold" is not found in dut, it should satisfy rule "io_fpRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_5_2_addr" is not found in dut, it should satisfy rule "io_fpRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_5_2_hold" is not found in dut, it should satisfy rule "io_fpRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_cboCF" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_cboI" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_cboZ" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_frm" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_frm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_fsIsOff" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_hfenceGVMA" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_hfenceGVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_hfenceVVMA" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_hfenceVVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_hlsv" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_sfencePart" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_sfenceVMA" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_vsIsOff" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_vsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_wfi" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_special_cboI2F" is not found in dut, it should satisfy rule "io_fromCSR_special_cboI2F"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_virtualInst_cboCF" is not found in dut, it should satisfy rule "io_fromCSR_virtualInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_virtualInst_cboI" is not found in dut, it should satisfy rule "io_fromCSR_virtualInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_virtualInst_cboZ" is not found in dut, it should satisfy rule "io_fromCSR_virtualInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_virtualInst_hfence" is not found in dut, it should satisfy rule "io_fromCSR_virtualInst_hfence"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_virtualInst_hlsv" is not found in dut, it should satisfy rule "io_fromCSR_virtualInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_virtualInst_sfencePart" is not found in dut, it should satisfy rule "io_fromCSR_virtualInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_virtualInst_sfenceVMA" is not found in dut, it should satisfy rule "io_fromCSR_virtualInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_virtualInst_wfi" is not found in dut, it should satisfy rule "io_fromCSR_virtualInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_commitVType_hasVsetvl" is not found in dut, it should satisfy rule "io_fromRob_commitVType_hasVsetvl"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_commitVType_vtype_bits_illegal" is not found in dut, it should satisfy rule "io_fromRob_commitVType_vtype_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_commitVType_vtype_bits_vlmul" is not found in dut, it should satisfy rule "io_fromRob_commitVType_vtype_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_commitVType_vtype_bits_vma" is not found in dut, it should satisfy rule "io_fromRob_commitVType_vtype_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_commitVType_vtype_bits_vsew" is not found in dut, it should satisfy rule "io_fromRob_commitVType_vtype_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_commitVType_vtype_bits_vta" is not found in dut, it should satisfy rule "io_fromRob_commitVType_vtype_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_commitVType_vtype_valid" is not found in dut, it should satisfy rule "io_fromRob_commitVType_vtype_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_isResumeVType" is not found in dut, it should satisfy rule "io_fromRob_isResumeVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_walkToArchVType" is not found in dut, it should satisfy rule "io_fromRob_walkToArchVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_walkVType_bits_illegal" is not found in dut, it should satisfy rule "io_fromRob_walkVType_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_walkVType_bits_vlmul" is not found in dut, it should satisfy rule "io_fromRob_walkVType_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_walkVType_bits_vma" is not found in dut, it should satisfy rule "io_fromRob_walkVType_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_walkVType_bits_vsew" is not found in dut, it should satisfy rule "io_fromRob_walkVType_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_walkVType_bits_vta" is not found in dut, it should satisfy rule "io_fromRob_walkVType_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_walkVType_valid" is not found in dut, it should satisfy rule "io_fromRob_walkVType_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fusion_0" is not found in dut, it should satisfy rule "io_fusion_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fusion_1" is not found in dut, it should satisfy rule "io_fusion_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fusion_2" is not found in dut, it should satisfy rule "io_fusion_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fusion_3" is not found in dut, it should satisfy rule "io_fusion_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fusion_4" is not found in dut, it should satisfy rule "io_fusion_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_in_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_foldpc" is not found in dut, it should satisfy rule "io_in_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_ftqOffset" is not found in dut, it should satisfy rule "io_in_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_in_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_in_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_instr" is not found in dut, it should satisfy rule "io_in_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_in_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_in_0_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_in_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_in_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_pred_taken" is not found in dut, it should satisfy rule "io_in_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_trigger" is not found in dut, it should satisfy rule "io_in_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_ready" is not found in dut, it should satisfy rule "io_in_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_valid" is not found in dut, it should satisfy rule "io_in_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_in_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_foldpc" is not found in dut, it should satisfy rule "io_in_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_ftqOffset" is not found in dut, it should satisfy rule "io_in_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_in_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_in_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_instr" is not found in dut, it should satisfy rule "io_in_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_in_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_in_1_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_in_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_in_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_pred_taken" is not found in dut, it should satisfy rule "io_in_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_trigger" is not found in dut, it should satisfy rule "io_in_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_ready" is not found in dut, it should satisfy rule "io_in_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_valid" is not found in dut, it should satisfy rule "io_in_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_in_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_foldpc" is not found in dut, it should satisfy rule "io_in_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_ftqOffset" is not found in dut, it should satisfy rule "io_in_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_in_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_in_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_instr" is not found in dut, it should satisfy rule "io_in_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_in_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_in_2_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_in_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_in_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_pred_taken" is not found in dut, it should satisfy rule "io_in_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_trigger" is not found in dut, it should satisfy rule "io_in_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_ready" is not found in dut, it should satisfy rule "io_in_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_valid" is not found in dut, it should satisfy rule "io_in_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_in_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_foldpc" is not found in dut, it should satisfy rule "io_in_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_ftqOffset" is not found in dut, it should satisfy rule "io_in_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_in_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_in_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_instr" is not found in dut, it should satisfy rule "io_in_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_in_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_in_3_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_in_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_in_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_pred_taken" is not found in dut, it should satisfy rule "io_in_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_trigger" is not found in dut, it should satisfy rule "io_in_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_ready" is not found in dut, it should satisfy rule "io_in_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_valid" is not found in dut, it should satisfy rule "io_in_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_in_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_foldpc" is not found in dut, it should satisfy rule "io_in_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_ftqOffset" is not found in dut, it should satisfy rule "io_in_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_in_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_in_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_instr" is not found in dut, it should satisfy rule "io_in_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_in_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_in_4_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_in_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_in_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_pred_taken" is not found in dut, it should satisfy rule "io_in_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_trigger" is not found in dut, it should satisfy rule "io_in_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_ready" is not found in dut, it should satisfy rule "io_in_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_valid" is not found in dut, it should satisfy rule "io_in_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_in_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_foldpc" is not found in dut, it should satisfy rule "io_in_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_ftqOffset" is not found in dut, it should satisfy rule "io_in_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_in_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_in_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_instr" is not found in dut, it should satisfy rule "io_in_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_in_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_in_5_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_in_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_in_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_pred_taken" is not found in dut, it should satisfy rule "io_in_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_trigger" is not found in dut, it should satisfy rule "io_in_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_ready" is not found in dut, it should satisfy rule "io_in_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_valid" is not found in dut, it should satisfy rule "io_in_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_0_0_addr" is not found in dut, it should satisfy rule "io_intRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_0_0_hold" is not found in dut, it should satisfy rule "io_intRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_0_1_addr" is not found in dut, it should satisfy rule "io_intRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_0_1_hold" is not found in dut, it should satisfy rule "io_intRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_1_0_addr" is not found in dut, it should satisfy rule "io_intRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_1_0_hold" is not found in dut, it should satisfy rule "io_intRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_1_1_addr" is not found in dut, it should satisfy rule "io_intRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_1_1_hold" is not found in dut, it should satisfy rule "io_intRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_2_0_addr" is not found in dut, it should satisfy rule "io_intRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_2_0_hold" is not found in dut, it should satisfy rule "io_intRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_2_1_addr" is not found in dut, it should satisfy rule "io_intRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_2_1_hold" is not found in dut, it should satisfy rule "io_intRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_3_0_addr" is not found in dut, it should satisfy rule "io_intRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_3_0_hold" is not found in dut, it should satisfy rule "io_intRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_3_1_addr" is not found in dut, it should satisfy rule "io_intRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_3_1_hold" is not found in dut, it should satisfy rule "io_intRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_4_0_addr" is not found in dut, it should satisfy rule "io_intRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_4_0_hold" is not found in dut, it should satisfy rule "io_intRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_4_1_addr" is not found in dut, it should satisfy rule "io_intRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_4_1_hold" is not found in dut, it should satisfy rule "io_intRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_5_0_addr" is not found in dut, it should satisfy rule "io_intRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_5_0_hold" is not found in dut, it should satisfy rule "io_intRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_5_1_addr" is not found in dut, it should satisfy rule "io_intRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_5_1_hold" is not found in dut, it should satisfy rule "io_intRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_blockBackward" is not found in dut, it should satisfy rule "io_out_0_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_canRobCompress" is not found in dut, it should satisfy rule "io_out_0_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_commitType" is not found in dut, it should satisfy rule "io_out_0_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_out_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_firstUop" is not found in dut, it should satisfy rule "io_out_0_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_flushPipe" is not found in dut, it should satisfy rule "io_out_0_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_foldpc" is not found in dut, it should satisfy rule "io_out_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_fpWen" is not found in dut, it should satisfy rule "io_out_0_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_fpu_rm" is not found in dut, it should satisfy rule "io_out_0_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_fpu_typ" is not found in dut, it should satisfy rule "io_out_0_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_out_0_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_fpu_wflags" is not found in dut, it should satisfy rule "io_out_0_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_ftqOffset" is not found in dut, it should satisfy rule "io_out_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_out_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_out_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_fuOpType" is not found in dut, it should satisfy rule "io_out_0_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_fuType" is not found in dut, it should satisfy rule "io_out_0_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_imm" is not found in dut, it should satisfy rule "io_out_0_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_instr" is not found in dut, it should satisfy rule "io_out_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_out_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_isMove" is not found in dut, it should satisfy rule "io_out_0_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_isVset" is not found in dut, it should satisfy rule "io_out_0_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_isXSTrap" is not found in dut, it should satisfy rule "io_out_0_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_lastUop" is not found in dut, it should satisfy rule "io_out_0_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_ldest" is not found in dut, it should satisfy rule "io_out_0_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_lsrc_0" is not found in dut, it should satisfy rule "io_out_0_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_lsrc_1" is not found in dut, it should satisfy rule "io_out_0_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_lsrc_2" is not found in dut, it should satisfy rule "io_out_0_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_numWB" is not found in dut, it should satisfy rule "io_out_0_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_out_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_out_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_pred_taken" is not found in dut, it should satisfy rule "io_out_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_rfWen" is not found in dut, it should satisfy rule "io_out_0_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_selImm" is not found in dut, it should satisfy rule "io_out_0_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_srcType_0" is not found in dut, it should satisfy rule "io_out_0_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_srcType_1" is not found in dut, it should satisfy rule "io_out_0_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_srcType_2" is not found in dut, it should satisfy rule "io_out_0_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_srcType_3" is not found in dut, it should satisfy rule "io_out_0_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_srcType_4" is not found in dut, it should satisfy rule "io_out_0_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_trigger" is not found in dut, it should satisfy rule "io_out_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_uopIdx" is not found in dut, it should satisfy rule "io_out_0_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_uopSplitType" is not found in dut, it should satisfy rule "io_out_0_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_v0Wen" is not found in dut, it should satisfy rule "io_out_0_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vecWen" is not found in dut, it should satisfy rule "io_out_0_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vlWen" is not found in dut, it should satisfy rule "io_out_0_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vlsInstr" is not found in dut, it should satisfy rule "io_out_0_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_isExt" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_nf" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_specVill" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_specVma" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_specVta" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_veew" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_vill" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_vm" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_vma" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_vsew" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_vstart" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_vta" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_waitForward" is not found in dut, it should satisfy rule "io_out_0_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_wfflags" is not found in dut, it should satisfy rule "io_out_0_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_ready" is not found in dut, it should satisfy rule "io_out_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_valid" is not found in dut, it should satisfy rule "io_out_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_blockBackward" is not found in dut, it should satisfy rule "io_out_1_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_canRobCompress" is not found in dut, it should satisfy rule "io_out_1_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_commitType" is not found in dut, it should satisfy rule "io_out_1_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_out_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_firstUop" is not found in dut, it should satisfy rule "io_out_1_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_flushPipe" is not found in dut, it should satisfy rule "io_out_1_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_foldpc" is not found in dut, it should satisfy rule "io_out_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_fpWen" is not found in dut, it should satisfy rule "io_out_1_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_fpu_rm" is not found in dut, it should satisfy rule "io_out_1_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_fpu_typ" is not found in dut, it should satisfy rule "io_out_1_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_out_1_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_fpu_wflags" is not found in dut, it should satisfy rule "io_out_1_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_ftqOffset" is not found in dut, it should satisfy rule "io_out_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_out_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_out_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_fuOpType" is not found in dut, it should satisfy rule "io_out_1_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_fuType" is not found in dut, it should satisfy rule "io_out_1_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_imm" is not found in dut, it should satisfy rule "io_out_1_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_instr" is not found in dut, it should satisfy rule "io_out_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_out_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_isMove" is not found in dut, it should satisfy rule "io_out_1_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_isVset" is not found in dut, it should satisfy rule "io_out_1_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_isXSTrap" is not found in dut, it should satisfy rule "io_out_1_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_lastUop" is not found in dut, it should satisfy rule "io_out_1_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_ldest" is not found in dut, it should satisfy rule "io_out_1_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_lsrc_0" is not found in dut, it should satisfy rule "io_out_1_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_lsrc_1" is not found in dut, it should satisfy rule "io_out_1_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_lsrc_2" is not found in dut, it should satisfy rule "io_out_1_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_numWB" is not found in dut, it should satisfy rule "io_out_1_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_out_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_out_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_pred_taken" is not found in dut, it should satisfy rule "io_out_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_rfWen" is not found in dut, it should satisfy rule "io_out_1_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_selImm" is not found in dut, it should satisfy rule "io_out_1_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_srcType_0" is not found in dut, it should satisfy rule "io_out_1_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_srcType_1" is not found in dut, it should satisfy rule "io_out_1_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_srcType_2" is not found in dut, it should satisfy rule "io_out_1_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_srcType_3" is not found in dut, it should satisfy rule "io_out_1_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_srcType_4" is not found in dut, it should satisfy rule "io_out_1_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_trigger" is not found in dut, it should satisfy rule "io_out_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_uopIdx" is not found in dut, it should satisfy rule "io_out_1_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_uopSplitType" is not found in dut, it should satisfy rule "io_out_1_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_v0Wen" is not found in dut, it should satisfy rule "io_out_1_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vecWen" is not found in dut, it should satisfy rule "io_out_1_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vlWen" is not found in dut, it should satisfy rule "io_out_1_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vlsInstr" is not found in dut, it should satisfy rule "io_out_1_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_isExt" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_nf" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_specVill" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_specVma" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_specVta" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_veew" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_vill" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_vm" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_vma" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_vsew" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_vstart" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_vta" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_waitForward" is not found in dut, it should satisfy rule "io_out_1_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_wfflags" is not found in dut, it should satisfy rule "io_out_1_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_ready" is not found in dut, it should satisfy rule "io_out_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_valid" is not found in dut, it should satisfy rule "io_out_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_blockBackward" is not found in dut, it should satisfy rule "io_out_2_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_canRobCompress" is not found in dut, it should satisfy rule "io_out_2_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_commitType" is not found in dut, it should satisfy rule "io_out_2_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_out_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_firstUop" is not found in dut, it should satisfy rule "io_out_2_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_flushPipe" is not found in dut, it should satisfy rule "io_out_2_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_foldpc" is not found in dut, it should satisfy rule "io_out_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_fpWen" is not found in dut, it should satisfy rule "io_out_2_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_fpu_rm" is not found in dut, it should satisfy rule "io_out_2_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_fpu_typ" is not found in dut, it should satisfy rule "io_out_2_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_out_2_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_fpu_wflags" is not found in dut, it should satisfy rule "io_out_2_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_ftqOffset" is not found in dut, it should satisfy rule "io_out_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_out_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_out_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_fuOpType" is not found in dut, it should satisfy rule "io_out_2_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_fuType" is not found in dut, it should satisfy rule "io_out_2_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_imm" is not found in dut, it should satisfy rule "io_out_2_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_instr" is not found in dut, it should satisfy rule "io_out_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_out_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_isMove" is not found in dut, it should satisfy rule "io_out_2_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_isVset" is not found in dut, it should satisfy rule "io_out_2_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_isXSTrap" is not found in dut, it should satisfy rule "io_out_2_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_lastUop" is not found in dut, it should satisfy rule "io_out_2_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_ldest" is not found in dut, it should satisfy rule "io_out_2_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_lsrc_0" is not found in dut, it should satisfy rule "io_out_2_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_lsrc_1" is not found in dut, it should satisfy rule "io_out_2_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_lsrc_2" is not found in dut, it should satisfy rule "io_out_2_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_numWB" is not found in dut, it should satisfy rule "io_out_2_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_out_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_out_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_pred_taken" is not found in dut, it should satisfy rule "io_out_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_rfWen" is not found in dut, it should satisfy rule "io_out_2_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_selImm" is not found in dut, it should satisfy rule "io_out_2_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_srcType_0" is not found in dut, it should satisfy rule "io_out_2_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_srcType_1" is not found in dut, it should satisfy rule "io_out_2_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_srcType_2" is not found in dut, it should satisfy rule "io_out_2_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_srcType_3" is not found in dut, it should satisfy rule "io_out_2_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_srcType_4" is not found in dut, it should satisfy rule "io_out_2_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_trigger" is not found in dut, it should satisfy rule "io_out_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_uopIdx" is not found in dut, it should satisfy rule "io_out_2_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_uopSplitType" is not found in dut, it should satisfy rule "io_out_2_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_v0Wen" is not found in dut, it should satisfy rule "io_out_2_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vecWen" is not found in dut, it should satisfy rule "io_out_2_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vlWen" is not found in dut, it should satisfy rule "io_out_2_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vlsInstr" is not found in dut, it should satisfy rule "io_out_2_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_isExt" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_nf" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_specVill" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_specVma" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_specVta" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_veew" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_vill" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_vm" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_vma" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_vsew" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_vstart" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_vta" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_waitForward" is not found in dut, it should satisfy rule "io_out_2_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_wfflags" is not found in dut, it should satisfy rule "io_out_2_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_ready" is not found in dut, it should satisfy rule "io_out_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_valid" is not found in dut, it should satisfy rule "io_out_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_blockBackward" is not found in dut, it should satisfy rule "io_out_3_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_canRobCompress" is not found in dut, it should satisfy rule "io_out_3_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_commitType" is not found in dut, it should satisfy rule "io_out_3_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_out_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_firstUop" is not found in dut, it should satisfy rule "io_out_3_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_flushPipe" is not found in dut, it should satisfy rule "io_out_3_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_foldpc" is not found in dut, it should satisfy rule "io_out_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_fpWen" is not found in dut, it should satisfy rule "io_out_3_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_fpu_rm" is not found in dut, it should satisfy rule "io_out_3_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_fpu_typ" is not found in dut, it should satisfy rule "io_out_3_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_out_3_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_fpu_wflags" is not found in dut, it should satisfy rule "io_out_3_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_ftqOffset" is not found in dut, it should satisfy rule "io_out_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_out_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_out_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_fuOpType" is not found in dut, it should satisfy rule "io_out_3_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_fuType" is not found in dut, it should satisfy rule "io_out_3_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_imm" is not found in dut, it should satisfy rule "io_out_3_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_instr" is not found in dut, it should satisfy rule "io_out_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_out_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_isMove" is not found in dut, it should satisfy rule "io_out_3_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_isVset" is not found in dut, it should satisfy rule "io_out_3_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_isXSTrap" is not found in dut, it should satisfy rule "io_out_3_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_lastUop" is not found in dut, it should satisfy rule "io_out_3_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_ldest" is not found in dut, it should satisfy rule "io_out_3_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_lsrc_0" is not found in dut, it should satisfy rule "io_out_3_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_lsrc_1" is not found in dut, it should satisfy rule "io_out_3_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_lsrc_2" is not found in dut, it should satisfy rule "io_out_3_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_numWB" is not found in dut, it should satisfy rule "io_out_3_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_out_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_out_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_pred_taken" is not found in dut, it should satisfy rule "io_out_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_rfWen" is not found in dut, it should satisfy rule "io_out_3_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_selImm" is not found in dut, it should satisfy rule "io_out_3_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_srcType_0" is not found in dut, it should satisfy rule "io_out_3_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_srcType_1" is not found in dut, it should satisfy rule "io_out_3_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_srcType_2" is not found in dut, it should satisfy rule "io_out_3_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_srcType_3" is not found in dut, it should satisfy rule "io_out_3_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_srcType_4" is not found in dut, it should satisfy rule "io_out_3_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_trigger" is not found in dut, it should satisfy rule "io_out_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_uopIdx" is not found in dut, it should satisfy rule "io_out_3_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_uopSplitType" is not found in dut, it should satisfy rule "io_out_3_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_v0Wen" is not found in dut, it should satisfy rule "io_out_3_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vecWen" is not found in dut, it should satisfy rule "io_out_3_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vlWen" is not found in dut, it should satisfy rule "io_out_3_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vlsInstr" is not found in dut, it should satisfy rule "io_out_3_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_isExt" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_nf" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_specVill" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_specVma" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_specVta" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_veew" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_vill" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_vm" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_vma" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_vsew" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_vstart" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_vta" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_waitForward" is not found in dut, it should satisfy rule "io_out_3_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_wfflags" is not found in dut, it should satisfy rule "io_out_3_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_ready" is not found in dut, it should satisfy rule "io_out_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_valid" is not found in dut, it should satisfy rule "io_out_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_blockBackward" is not found in dut, it should satisfy rule "io_out_4_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_canRobCompress" is not found in dut, it should satisfy rule "io_out_4_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_commitType" is not found in dut, it should satisfy rule "io_out_4_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_out_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_firstUop" is not found in dut, it should satisfy rule "io_out_4_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_flushPipe" is not found in dut, it should satisfy rule "io_out_4_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_foldpc" is not found in dut, it should satisfy rule "io_out_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_fpWen" is not found in dut, it should satisfy rule "io_out_4_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_fpu_rm" is not found in dut, it should satisfy rule "io_out_4_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_fpu_typ" is not found in dut, it should satisfy rule "io_out_4_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_out_4_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_fpu_wflags" is not found in dut, it should satisfy rule "io_out_4_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_ftqOffset" is not found in dut, it should satisfy rule "io_out_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_out_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_out_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_fuOpType" is not found in dut, it should satisfy rule "io_out_4_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_fuType" is not found in dut, it should satisfy rule "io_out_4_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_imm" is not found in dut, it should satisfy rule "io_out_4_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_instr" is not found in dut, it should satisfy rule "io_out_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_out_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_isMove" is not found in dut, it should satisfy rule "io_out_4_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_isVset" is not found in dut, it should satisfy rule "io_out_4_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_isXSTrap" is not found in dut, it should satisfy rule "io_out_4_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_lastUop" is not found in dut, it should satisfy rule "io_out_4_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_ldest" is not found in dut, it should satisfy rule "io_out_4_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_lsrc_0" is not found in dut, it should satisfy rule "io_out_4_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_lsrc_1" is not found in dut, it should satisfy rule "io_out_4_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_lsrc_2" is not found in dut, it should satisfy rule "io_out_4_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_numWB" is not found in dut, it should satisfy rule "io_out_4_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_out_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_out_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_pred_taken" is not found in dut, it should satisfy rule "io_out_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_rfWen" is not found in dut, it should satisfy rule "io_out_4_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_selImm" is not found in dut, it should satisfy rule "io_out_4_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_srcType_0" is not found in dut, it should satisfy rule "io_out_4_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_srcType_1" is not found in dut, it should satisfy rule "io_out_4_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_srcType_2" is not found in dut, it should satisfy rule "io_out_4_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_srcType_3" is not found in dut, it should satisfy rule "io_out_4_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_srcType_4" is not found in dut, it should satisfy rule "io_out_4_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_trigger" is not found in dut, it should satisfy rule "io_out_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_uopIdx" is not found in dut, it should satisfy rule "io_out_4_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_uopSplitType" is not found in dut, it should satisfy rule "io_out_4_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_v0Wen" is not found in dut, it should satisfy rule "io_out_4_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vecWen" is not found in dut, it should satisfy rule "io_out_4_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vlWen" is not found in dut, it should satisfy rule "io_out_4_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vlsInstr" is not found in dut, it should satisfy rule "io_out_4_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_isExt" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_nf" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_specVill" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_specVma" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_specVta" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_veew" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_vill" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_vm" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_vma" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_vsew" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_vstart" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_vta" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_waitForward" is not found in dut, it should satisfy rule "io_out_4_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_wfflags" is not found in dut, it should satisfy rule "io_out_4_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_ready" is not found in dut, it should satisfy rule "io_out_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_valid" is not found in dut, it should satisfy rule "io_out_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_blockBackward" is not found in dut, it should satisfy rule "io_out_5_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_canRobCompress" is not found in dut, it should satisfy rule "io_out_5_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_commitType" is not found in dut, it should satisfy rule "io_out_5_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_out_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_firstUop" is not found in dut, it should satisfy rule "io_out_5_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_flushPipe" is not found in dut, it should satisfy rule "io_out_5_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_foldpc" is not found in dut, it should satisfy rule "io_out_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_fpWen" is not found in dut, it should satisfy rule "io_out_5_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_fpu_rm" is not found in dut, it should satisfy rule "io_out_5_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_fpu_typ" is not found in dut, it should satisfy rule "io_out_5_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_out_5_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_fpu_wflags" is not found in dut, it should satisfy rule "io_out_5_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_ftqOffset" is not found in dut, it should satisfy rule "io_out_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_out_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_out_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_fuOpType" is not found in dut, it should satisfy rule "io_out_5_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_fuType" is not found in dut, it should satisfy rule "io_out_5_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_imm" is not found in dut, it should satisfy rule "io_out_5_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_instr" is not found in dut, it should satisfy rule "io_out_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_out_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_isMove" is not found in dut, it should satisfy rule "io_out_5_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_isVset" is not found in dut, it should satisfy rule "io_out_5_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_isXSTrap" is not found in dut, it should satisfy rule "io_out_5_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_lastUop" is not found in dut, it should satisfy rule "io_out_5_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_ldest" is not found in dut, it should satisfy rule "io_out_5_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_lsrc_0" is not found in dut, it should satisfy rule "io_out_5_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_lsrc_1" is not found in dut, it should satisfy rule "io_out_5_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_lsrc_2" is not found in dut, it should satisfy rule "io_out_5_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_numWB" is not found in dut, it should satisfy rule "io_out_5_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_out_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_out_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_pred_taken" is not found in dut, it should satisfy rule "io_out_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_rfWen" is not found in dut, it should satisfy rule "io_out_5_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_selImm" is not found in dut, it should satisfy rule "io_out_5_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_srcType_0" is not found in dut, it should satisfy rule "io_out_5_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_srcType_1" is not found in dut, it should satisfy rule "io_out_5_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_srcType_2" is not found in dut, it should satisfy rule "io_out_5_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_srcType_3" is not found in dut, it should satisfy rule "io_out_5_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_srcType_4" is not found in dut, it should satisfy rule "io_out_5_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_trigger" is not found in dut, it should satisfy rule "io_out_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_uopIdx" is not found in dut, it should satisfy rule "io_out_5_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_uopSplitType" is not found in dut, it should satisfy rule "io_out_5_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_v0Wen" is not found in dut, it should satisfy rule "io_out_5_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vecWen" is not found in dut, it should satisfy rule "io_out_5_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vlWen" is not found in dut, it should satisfy rule "io_out_5_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vlsInstr" is not found in dut, it should satisfy rule "io_out_5_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_isExt" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_nf" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_specVill" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_specVma" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_specVta" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_veew" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_vill" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_vm" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_vma" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_vsew" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_vstart" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_vta" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_waitForward" is not found in dut, it should satisfy rule "io_out_5_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_wfflags" is not found in dut, it should satisfy rule "io_out_5_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_ready" is not found in dut, it should satisfy rule "io_out_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_valid" is not found in dut, it should satisfy rule "io_out_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.perf_0_value" is not found in dut, it should satisfy rule "io_perf_0_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.perf_1_value" is not found in dut, it should satisfy rule "io_perf_1_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.perf_2_value" is not found in dut, it should satisfy rule "io_perf_2_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.perf_3_value" is not found in dut, it should satisfy rule "io_perf_3_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.redirect" is not found in dut, it should satisfy rule "io_redirect"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.toCSR_trapInstInfo_bits_ftqOffset" is not found in dut, it should satisfy rule "io_toCSR_trapInstInfo_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.toCSR_trapInstInfo_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_toCSR_trapInstInfo_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.toCSR_trapInstInfo_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_toCSR_trapInstInfo_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.toCSR_trapInstInfo_bits_instr" is not found in dut, it should satisfy rule "io_toCSR_trapInstInfo_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.toCSR_trapInstInfo_valid" is not found in dut, it should satisfy rule "io_toCSR_trapInstInfo_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_0_0_addr" is not found in dut, it should satisfy rule "io_vecRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_0_0_hold" is not found in dut, it should satisfy rule "io_vecRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_0_1_addr" is not found in dut, it should satisfy rule "io_vecRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_0_1_hold" is not found in dut, it should satisfy rule "io_vecRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_0_2_addr" is not found in dut, it should satisfy rule "io_vecRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_0_2_hold" is not found in dut, it should satisfy rule "io_vecRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_1_0_addr" is not found in dut, it should satisfy rule "io_vecRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_1_0_hold" is not found in dut, it should satisfy rule "io_vecRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_1_1_addr" is not found in dut, it should satisfy rule "io_vecRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_1_1_hold" is not found in dut, it should satisfy rule "io_vecRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_1_2_addr" is not found in dut, it should satisfy rule "io_vecRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_1_2_hold" is not found in dut, it should satisfy rule "io_vecRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_2_0_addr" is not found in dut, it should satisfy rule "io_vecRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_2_0_hold" is not found in dut, it should satisfy rule "io_vecRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_2_1_addr" is not found in dut, it should satisfy rule "io_vecRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_2_1_hold" is not found in dut, it should satisfy rule "io_vecRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_2_2_addr" is not found in dut, it should satisfy rule "io_vecRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_2_2_hold" is not found in dut, it should satisfy rule "io_vecRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_3_0_addr" is not found in dut, it should satisfy rule "io_vecRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_3_0_hold" is not found in dut, it should satisfy rule "io_vecRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_3_1_addr" is not found in dut, it should satisfy rule "io_vecRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_3_1_hold" is not found in dut, it should satisfy rule "io_vecRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_3_2_addr" is not found in dut, it should satisfy rule "io_vecRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_3_2_hold" is not found in dut, it should satisfy rule "io_vecRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_4_0_addr" is not found in dut, it should satisfy rule "io_vecRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_4_0_hold" is not found in dut, it should satisfy rule "io_vecRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_4_1_addr" is not found in dut, it should satisfy rule "io_vecRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_4_1_hold" is not found in dut, it should satisfy rule "io_vecRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_4_2_addr" is not found in dut, it should satisfy rule "io_vecRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_4_2_hold" is not found in dut, it should satisfy rule "io_vecRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_5_0_addr" is not found in dut, it should satisfy rule "io_vecRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_5_0_hold" is not found in dut, it should satisfy rule "io_vecRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_5_1_addr" is not found in dut, it should satisfy rule "io_vecRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_5_1_hold" is not found in dut, it should satisfy rule "io_vecRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_5_2_addr" is not found in dut, it should satisfy rule "io_vecRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_5_2_hold" is not found in dut, it should satisfy rule "io_vecRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vsetvlVType_illegal" is not found in dut, it should satisfy rule "io_vsetvlVType_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vsetvlVType_vlmul" is not found in dut, it should satisfy rule "io_vsetvlVType_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vsetvlVType_vma" is not found in dut, it should satisfy rule "io_vsetvlVType_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vsetvlVType_vsew" is not found in dut, it should satisfy rule "io_vsetvlVType_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vsetvlVType_vta" is not found in dut, it should satisfy rule "io_vsetvlVType_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vstart" is not found in dut, it should satisfy rule "io_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_blockBackward" is not found in dut, it should satisfy rule "io_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_canRobCompress" is not found in dut, it should satisfy rule "io_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_commitType" is not found in dut, it should satisfy rule "io_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_firstUop" is not found in dut, it should satisfy rule "io_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_flushPipe" is not found in dut, it should satisfy rule "io_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpWen" is not found in dut, it should satisfy rule "io_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_rm" is not found in dut, it should satisfy rule "io_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typ" is not found in dut, it should satisfy rule "io_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_wflags" is not found in dut, it should satisfy rule "io_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuOpType" is not found in dut, it should satisfy rule "io_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuType" is not found in dut, it should satisfy rule "io_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_imm" is not found in dut, it should satisfy rule "io_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isMove" is not found in dut, it should satisfy rule "io_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isVset" is not found in dut, it should satisfy rule "io_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isXSTrap" is not found in dut, it should satisfy rule "io_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lastUop" is not found in dut, it should satisfy rule "io_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ldest" is not found in dut, it should satisfy rule "io_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_0" is not found in dut, it should satisfy rule "io_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_1" is not found in dut, it should satisfy rule "io_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_2" is not found in dut, it should satisfy rule "io_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_numWB" is not found in dut, it should satisfy rule "io_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_rfWen" is not found in dut, it should satisfy rule "io_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_selImm" is not found in dut, it should satisfy rule "io_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_0" is not found in dut, it should satisfy rule "io_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_1" is not found in dut, it should satisfy rule "io_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_2" is not found in dut, it should satisfy rule "io_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_3" is not found in dut, it should satisfy rule "io_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_4" is not found in dut, it should satisfy rule "io_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopIdx" is not found in dut, it should satisfy rule "io_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopSplitType" is not found in dut, it should satisfy rule "io_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_v0Wen" is not found in dut, it should satisfy rule "io_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vecWen" is not found in dut, it should satisfy rule "io_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlWen" is not found in dut, it should satisfy rule "io_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlsInstr" is not found in dut, it should satisfy rule "io_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isExt" is not found in dut, it should satisfy rule "io_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_nf" is not found in dut, it should satisfy rule "io_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVill" is not found in dut, it should satisfy rule "io_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVma" is not found in dut, it should satisfy rule "io_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVta" is not found in dut, it should satisfy rule "io_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_veew" is not found in dut, it should satisfy rule "io_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vill" is not found in dut, it should satisfy rule "io_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vm" is not found in dut, it should satisfy rule "io_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vma" is not found in dut, it should satisfy rule "io_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vsew" is not found in dut, it should satisfy rule "io_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vstart" is not found in dut, it should satisfy rule "io_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vta" is not found in dut, it should satisfy rule "io_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_waitForward" is not found in dut, it should satisfy rule "io_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_wfflags" is not found in dut, it should satisfy rule "io_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_blockBackward" is not found in dut, it should satisfy rule "io_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_canRobCompress" is not found in dut, it should satisfy rule "io_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_commitType" is not found in dut, it should satisfy rule "io_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_firstUop" is not found in dut, it should satisfy rule "io_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_flushPipe" is not found in dut, it should satisfy rule "io_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpWen" is not found in dut, it should satisfy rule "io_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_rm" is not found in dut, it should satisfy rule "io_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typ" is not found in dut, it should satisfy rule "io_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_wflags" is not found in dut, it should satisfy rule "io_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuOpType" is not found in dut, it should satisfy rule "io_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuType" is not found in dut, it should satisfy rule "io_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_imm" is not found in dut, it should satisfy rule "io_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isMove" is not found in dut, it should satisfy rule "io_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isVset" is not found in dut, it should satisfy rule "io_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isXSTrap" is not found in dut, it should satisfy rule "io_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lastUop" is not found in dut, it should satisfy rule "io_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ldest" is not found in dut, it should satisfy rule "io_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_0" is not found in dut, it should satisfy rule "io_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_1" is not found in dut, it should satisfy rule "io_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_2" is not found in dut, it should satisfy rule "io_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_numWB" is not found in dut, it should satisfy rule "io_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_rfWen" is not found in dut, it should satisfy rule "io_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_selImm" is not found in dut, it should satisfy rule "io_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_0" is not found in dut, it should satisfy rule "io_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_1" is not found in dut, it should satisfy rule "io_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_2" is not found in dut, it should satisfy rule "io_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_3" is not found in dut, it should satisfy rule "io_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_4" is not found in dut, it should satisfy rule "io_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopIdx" is not found in dut, it should satisfy rule "io_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopSplitType" is not found in dut, it should satisfy rule "io_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_v0Wen" is not found in dut, it should satisfy rule "io_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vecWen" is not found in dut, it should satisfy rule "io_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlWen" is not found in dut, it should satisfy rule "io_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlsInstr" is not found in dut, it should satisfy rule "io_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isExt" is not found in dut, it should satisfy rule "io_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_nf" is not found in dut, it should satisfy rule "io_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVill" is not found in dut, it should satisfy rule "io_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVma" is not found in dut, it should satisfy rule "io_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVta" is not found in dut, it should satisfy rule "io_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_veew" is not found in dut, it should satisfy rule "io_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vill" is not found in dut, it should satisfy rule "io_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vm" is not found in dut, it should satisfy rule "io_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vma" is not found in dut, it should satisfy rule "io_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vsew" is not found in dut, it should satisfy rule "io_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vstart" is not found in dut, it should satisfy rule "io_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vta" is not found in dut, it should satisfy rule "io_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_waitForward" is not found in dut, it should satisfy rule "io_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_wfflags" is not found in dut, it should satisfy rule "io_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_blockBackward" is not found in dut, it should satisfy rule "io_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_canRobCompress" is not found in dut, it should satisfy rule "io_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_commitType" is not found in dut, it should satisfy rule "io_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_firstUop" is not found in dut, it should satisfy rule "io_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_flushPipe" is not found in dut, it should satisfy rule "io_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpWen" is not found in dut, it should satisfy rule "io_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_rm" is not found in dut, it should satisfy rule "io_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typ" is not found in dut, it should satisfy rule "io_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_wflags" is not found in dut, it should satisfy rule "io_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuOpType" is not found in dut, it should satisfy rule "io_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuType" is not found in dut, it should satisfy rule "io_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_imm" is not found in dut, it should satisfy rule "io_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isMove" is not found in dut, it should satisfy rule "io_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isVset" is not found in dut, it should satisfy rule "io_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isXSTrap" is not found in dut, it should satisfy rule "io_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lastUop" is not found in dut, it should satisfy rule "io_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ldest" is not found in dut, it should satisfy rule "io_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_0" is not found in dut, it should satisfy rule "io_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_1" is not found in dut, it should satisfy rule "io_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_2" is not found in dut, it should satisfy rule "io_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_numWB" is not found in dut, it should satisfy rule "io_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_rfWen" is not found in dut, it should satisfy rule "io_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_selImm" is not found in dut, it should satisfy rule "io_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_0" is not found in dut, it should satisfy rule "io_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_1" is not found in dut, it should satisfy rule "io_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_2" is not found in dut, it should satisfy rule "io_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_3" is not found in dut, it should satisfy rule "io_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_4" is not found in dut, it should satisfy rule "io_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopIdx" is not found in dut, it should satisfy rule "io_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopSplitType" is not found in dut, it should satisfy rule "io_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_v0Wen" is not found in dut, it should satisfy rule "io_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vecWen" is not found in dut, it should satisfy rule "io_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlWen" is not found in dut, it should satisfy rule "io_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlsInstr" is not found in dut, it should satisfy rule "io_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isExt" is not found in dut, it should satisfy rule "io_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_nf" is not found in dut, it should satisfy rule "io_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVill" is not found in dut, it should satisfy rule "io_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVma" is not found in dut, it should satisfy rule "io_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVta" is not found in dut, it should satisfy rule "io_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_veew" is not found in dut, it should satisfy rule "io_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vill" is not found in dut, it should satisfy rule "io_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vm" is not found in dut, it should satisfy rule "io_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vma" is not found in dut, it should satisfy rule "io_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vsew" is not found in dut, it should satisfy rule "io_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vstart" is not found in dut, it should satisfy rule "io_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vta" is not found in dut, it should satisfy rule "io_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_waitForward" is not found in dut, it should satisfy rule "io_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_wfflags" is not found in dut, it should satisfy rule "io_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_blockBackward" is not found in dut, it should satisfy rule "io_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_canRobCompress" is not found in dut, it should satisfy rule "io_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_commitType" is not found in dut, it should satisfy rule "io_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_firstUop" is not found in dut, it should satisfy rule "io_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_flushPipe" is not found in dut, it should satisfy rule "io_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpWen" is not found in dut, it should satisfy rule "io_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_rm" is not found in dut, it should satisfy rule "io_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typ" is not found in dut, it should satisfy rule "io_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_wflags" is not found in dut, it should satisfy rule "io_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuOpType" is not found in dut, it should satisfy rule "io_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuType" is not found in dut, it should satisfy rule "io_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_imm" is not found in dut, it should satisfy rule "io_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isMove" is not found in dut, it should satisfy rule "io_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isVset" is not found in dut, it should satisfy rule "io_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isXSTrap" is not found in dut, it should satisfy rule "io_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lastUop" is not found in dut, it should satisfy rule "io_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ldest" is not found in dut, it should satisfy rule "io_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_0" is not found in dut, it should satisfy rule "io_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_1" is not found in dut, it should satisfy rule "io_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_2" is not found in dut, it should satisfy rule "io_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_numWB" is not found in dut, it should satisfy rule "io_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_rfWen" is not found in dut, it should satisfy rule "io_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_selImm" is not found in dut, it should satisfy rule "io_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_0" is not found in dut, it should satisfy rule "io_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_1" is not found in dut, it should satisfy rule "io_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_2" is not found in dut, it should satisfy rule "io_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_3" is not found in dut, it should satisfy rule "io_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_4" is not found in dut, it should satisfy rule "io_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopIdx" is not found in dut, it should satisfy rule "io_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopSplitType" is not found in dut, it should satisfy rule "io_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_v0Wen" is not found in dut, it should satisfy rule "io_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vecWen" is not found in dut, it should satisfy rule "io_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlWen" is not found in dut, it should satisfy rule "io_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlsInstr" is not found in dut, it should satisfy rule "io_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isExt" is not found in dut, it should satisfy rule "io_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_nf" is not found in dut, it should satisfy rule "io_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVill" is not found in dut, it should satisfy rule "io_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVma" is not found in dut, it should satisfy rule "io_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVta" is not found in dut, it should satisfy rule "io_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_veew" is not found in dut, it should satisfy rule "io_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vill" is not found in dut, it should satisfy rule "io_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vm" is not found in dut, it should satisfy rule "io_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vma" is not found in dut, it should satisfy rule "io_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vsew" is not found in dut, it should satisfy rule "io_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vstart" is not found in dut, it should satisfy rule "io_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vta" is not found in dut, it should satisfy rule "io_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_waitForward" is not found in dut, it should satisfy rule "io_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_wfflags" is not found in dut, it should satisfy rule "io_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_blockBackward" is not found in dut, it should satisfy rule "io_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_canRobCompress" is not found in dut, it should satisfy rule "io_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_commitType" is not found in dut, it should satisfy rule "io_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_firstUop" is not found in dut, it should satisfy rule "io_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_flushPipe" is not found in dut, it should satisfy rule "io_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpWen" is not found in dut, it should satisfy rule "io_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_rm" is not found in dut, it should satisfy rule "io_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typ" is not found in dut, it should satisfy rule "io_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_wflags" is not found in dut, it should satisfy rule "io_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuOpType" is not found in dut, it should satisfy rule "io_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuType" is not found in dut, it should satisfy rule "io_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_imm" is not found in dut, it should satisfy rule "io_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isMove" is not found in dut, it should satisfy rule "io_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isVset" is not found in dut, it should satisfy rule "io_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isXSTrap" is not found in dut, it should satisfy rule "io_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lastUop" is not found in dut, it should satisfy rule "io_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ldest" is not found in dut, it should satisfy rule "io_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_0" is not found in dut, it should satisfy rule "io_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_1" is not found in dut, it should satisfy rule "io_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_2" is not found in dut, it should satisfy rule "io_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_numWB" is not found in dut, it should satisfy rule "io_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_rfWen" is not found in dut, it should satisfy rule "io_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_selImm" is not found in dut, it should satisfy rule "io_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_0" is not found in dut, it should satisfy rule "io_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_1" is not found in dut, it should satisfy rule "io_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_2" is not found in dut, it should satisfy rule "io_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_3" is not found in dut, it should satisfy rule "io_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_4" is not found in dut, it should satisfy rule "io_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopIdx" is not found in dut, it should satisfy rule "io_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopSplitType" is not found in dut, it should satisfy rule "io_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_v0Wen" is not found in dut, it should satisfy rule "io_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vecWen" is not found in dut, it should satisfy rule "io_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlWen" is not found in dut, it should satisfy rule "io_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlsInstr" is not found in dut, it should satisfy rule "io_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isExt" is not found in dut, it should satisfy rule "io_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_nf" is not found in dut, it should satisfy rule "io_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVill" is not found in dut, it should satisfy rule "io_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVma" is not found in dut, it should satisfy rule "io_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVta" is not found in dut, it should satisfy rule "io_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_veew" is not found in dut, it should satisfy rule "io_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vill" is not found in dut, it should satisfy rule "io_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vm" is not found in dut, it should satisfy rule "io_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vma" is not found in dut, it should satisfy rule "io_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vsew" is not found in dut, it should satisfy rule "io_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vstart" is not found in dut, it should satisfy rule "io_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vta" is not found in dut, it should satisfy rule "io_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_waitForward" is not found in dut, it should satisfy rule "io_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_wfflags" is not found in dut, it should satisfy rule "io_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_blockBackward" is not found in dut, it should satisfy rule "io_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_canRobCompress" is not found in dut, it should satisfy rule "io_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_commitType" is not found in dut, it should satisfy rule "io_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_firstUop" is not found in dut, it should satisfy rule "io_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_flushPipe" is not found in dut, it should satisfy rule "io_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_foldpc" is not found in dut, it should satisfy rule "io_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpWen" is not found in dut, it should satisfy rule "io_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_rm" is not found in dut, it should satisfy rule "io_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typ" is not found in dut, it should satisfy rule "io_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fpu_wflags" is not found in dut, it should satisfy rule "io_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqOffset" is not found in dut, it should satisfy rule "io_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuOpType" is not found in dut, it should satisfy rule "io_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_fuType" is not found in dut, it should satisfy rule "io_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_imm" is not found in dut, it should satisfy rule "io_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_instr" is not found in dut, it should satisfy rule "io_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isMove" is not found in dut, it should satisfy rule "io_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isVset" is not found in dut, it should satisfy rule "io_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_isXSTrap" is not found in dut, it should satisfy rule "io_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lastUop" is not found in dut, it should satisfy rule "io_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_ldest" is not found in dut, it should satisfy rule "io_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_0" is not found in dut, it should satisfy rule "io_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_1" is not found in dut, it should satisfy rule "io_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_lsrc_2" is not found in dut, it should satisfy rule "io_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_numWB" is not found in dut, it should satisfy rule "io_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_pred_taken" is not found in dut, it should satisfy rule "io_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_rfWen" is not found in dut, it should satisfy rule "io_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_selImm" is not found in dut, it should satisfy rule "io_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_0" is not found in dut, it should satisfy rule "io_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_1" is not found in dut, it should satisfy rule "io_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_2" is not found in dut, it should satisfy rule "io_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_3" is not found in dut, it should satisfy rule "io_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_srcType_4" is not found in dut, it should satisfy rule "io_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_trigger" is not found in dut, it should satisfy rule "io_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopIdx" is not found in dut, it should satisfy rule "io_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_uopSplitType" is not found in dut, it should satisfy rule "io_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_v0Wen" is not found in dut, it should satisfy rule "io_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vecWen" is not found in dut, it should satisfy rule "io_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlWen" is not found in dut, it should satisfy rule "io_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vlsInstr" is not found in dut, it should satisfy rule "io_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isExt" is not found in dut, it should satisfy rule "io_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_nf" is not found in dut, it should satisfy rule "io_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVill" is not found in dut, it should satisfy rule "io_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVma" is not found in dut, it should satisfy rule "io_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_specVta" is not found in dut, it should satisfy rule "io_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_veew" is not found in dut, it should satisfy rule "io_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vill" is not found in dut, it should satisfy rule "io_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vm" is not found in dut, it should satisfy rule "io_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vma" is not found in dut, it should satisfy rule "io_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vsew" is not found in dut, it should satisfy rule "io_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vstart" is not found in dut, it should satisfy rule "io_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_vpu_vta" is not found in dut, it should satisfy rule "io_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_waitForward" is not found in dut, it should satisfy rule "io_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.bits_wfflags" is not found in dut, it should satisfy rule "io_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.ready" is not found in dut, it should satisfy rule "io_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.valid" is not found in dut, it should satisfy rule "io_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.csrCtrl_singlestep" is not found in dut, it should satisfy rule "io_csrCtrl_singlestep"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_0_0_addr" is not found in dut, it should satisfy rule "io_fpRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_0_0_hold" is not found in dut, it should satisfy rule "io_fpRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_0_1_addr" is not found in dut, it should satisfy rule "io_fpRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_0_1_hold" is not found in dut, it should satisfy rule "io_fpRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_0_2_addr" is not found in dut, it should satisfy rule "io_fpRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_0_2_hold" is not found in dut, it should satisfy rule "io_fpRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_1_0_addr" is not found in dut, it should satisfy rule "io_fpRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_1_0_hold" is not found in dut, it should satisfy rule "io_fpRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_1_1_addr" is not found in dut, it should satisfy rule "io_fpRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_1_1_hold" is not found in dut, it should satisfy rule "io_fpRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_1_2_addr" is not found in dut, it should satisfy rule "io_fpRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_1_2_hold" is not found in dut, it should satisfy rule "io_fpRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_2_0_addr" is not found in dut, it should satisfy rule "io_fpRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_2_0_hold" is not found in dut, it should satisfy rule "io_fpRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_2_1_addr" is not found in dut, it should satisfy rule "io_fpRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_2_1_hold" is not found in dut, it should satisfy rule "io_fpRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_2_2_addr" is not found in dut, it should satisfy rule "io_fpRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_2_2_hold" is not found in dut, it should satisfy rule "io_fpRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_3_0_addr" is not found in dut, it should satisfy rule "io_fpRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_3_0_hold" is not found in dut, it should satisfy rule "io_fpRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_3_1_addr" is not found in dut, it should satisfy rule "io_fpRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_3_1_hold" is not found in dut, it should satisfy rule "io_fpRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_3_2_addr" is not found in dut, it should satisfy rule "io_fpRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_3_2_hold" is not found in dut, it should satisfy rule "io_fpRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_4_0_addr" is not found in dut, it should satisfy rule "io_fpRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_4_0_hold" is not found in dut, it should satisfy rule "io_fpRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_4_1_addr" is not found in dut, it should satisfy rule "io_fpRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_4_1_hold" is not found in dut, it should satisfy rule "io_fpRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_4_2_addr" is not found in dut, it should satisfy rule "io_fpRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_4_2_hold" is not found in dut, it should satisfy rule "io_fpRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_5_0_addr" is not found in dut, it should satisfy rule "io_fpRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_5_0_hold" is not found in dut, it should satisfy rule "io_fpRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_5_1_addr" is not found in dut, it should satisfy rule "io_fpRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_5_1_hold" is not found in dut, it should satisfy rule "io_fpRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_5_2_addr" is not found in dut, it should satisfy rule "io_fpRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fpRat_5_2_hold" is not found in dut, it should satisfy rule "io_fpRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_cboCF" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_cboI" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_cboZ" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_frm" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_frm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_fsIsOff" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_hfenceGVMA" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_hfenceGVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_hfenceVVMA" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_hfenceVVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_hlsv" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_sfencePart" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_sfenceVMA" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_vsIsOff" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_vsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_illegalInst_wfi" is not found in dut, it should satisfy rule "io_fromCSR_illegalInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_special_cboI2F" is not found in dut, it should satisfy rule "io_fromCSR_special_cboI2F"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_virtualInst_cboCF" is not found in dut, it should satisfy rule "io_fromCSR_virtualInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_virtualInst_cboI" is not found in dut, it should satisfy rule "io_fromCSR_virtualInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_virtualInst_cboZ" is not found in dut, it should satisfy rule "io_fromCSR_virtualInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_virtualInst_hfence" is not found in dut, it should satisfy rule "io_fromCSR_virtualInst_hfence"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_virtualInst_hlsv" is not found in dut, it should satisfy rule "io_fromCSR_virtualInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_virtualInst_sfencePart" is not found in dut, it should satisfy rule "io_fromCSR_virtualInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_virtualInst_sfenceVMA" is not found in dut, it should satisfy rule "io_fromCSR_virtualInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromCSR_virtualInst_wfi" is not found in dut, it should satisfy rule "io_fromCSR_virtualInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_commitVType_hasVsetvl" is not found in dut, it should satisfy rule "io_fromRob_commitVType_hasVsetvl"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_commitVType_vtype_bits_illegal" is not found in dut, it should satisfy rule "io_fromRob_commitVType_vtype_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_commitVType_vtype_bits_vlmul" is not found in dut, it should satisfy rule "io_fromRob_commitVType_vtype_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_commitVType_vtype_bits_vma" is not found in dut, it should satisfy rule "io_fromRob_commitVType_vtype_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_commitVType_vtype_bits_vsew" is not found in dut, it should satisfy rule "io_fromRob_commitVType_vtype_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_commitVType_vtype_bits_vta" is not found in dut, it should satisfy rule "io_fromRob_commitVType_vtype_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_commitVType_vtype_valid" is not found in dut, it should satisfy rule "io_fromRob_commitVType_vtype_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_isResumeVType" is not found in dut, it should satisfy rule "io_fromRob_isResumeVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_walkToArchVType" is not found in dut, it should satisfy rule "io_fromRob_walkToArchVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_walkVType_bits_illegal" is not found in dut, it should satisfy rule "io_fromRob_walkVType_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_walkVType_bits_vlmul" is not found in dut, it should satisfy rule "io_fromRob_walkVType_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_walkVType_bits_vma" is not found in dut, it should satisfy rule "io_fromRob_walkVType_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_walkVType_bits_vsew" is not found in dut, it should satisfy rule "io_fromRob_walkVType_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_walkVType_bits_vta" is not found in dut, it should satisfy rule "io_fromRob_walkVType_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fromRob_walkVType_valid" is not found in dut, it should satisfy rule "io_fromRob_walkVType_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fusion_0" is not found in dut, it should satisfy rule "io_fusion_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fusion_1" is not found in dut, it should satisfy rule "io_fusion_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fusion_2" is not found in dut, it should satisfy rule "io_fusion_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fusion_3" is not found in dut, it should satisfy rule "io_fusion_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.fusion_4" is not found in dut, it should satisfy rule "io_fusion_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_in_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_in_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_foldpc" is not found in dut, it should satisfy rule "io_in_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_ftqOffset" is not found in dut, it should satisfy rule "io_in_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_in_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_in_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_instr" is not found in dut, it should satisfy rule "io_in_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_in_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_in_0_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_in_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_in_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_pred_taken" is not found in dut, it should satisfy rule "io_in_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_bits_trigger" is not found in dut, it should satisfy rule "io_in_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_ready" is not found in dut, it should satisfy rule "io_in_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_0_valid" is not found in dut, it should satisfy rule "io_in_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_in_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_in_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_foldpc" is not found in dut, it should satisfy rule "io_in_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_ftqOffset" is not found in dut, it should satisfy rule "io_in_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_in_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_in_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_instr" is not found in dut, it should satisfy rule "io_in_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_in_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_in_1_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_in_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_in_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_pred_taken" is not found in dut, it should satisfy rule "io_in_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_bits_trigger" is not found in dut, it should satisfy rule "io_in_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_ready" is not found in dut, it should satisfy rule "io_in_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_1_valid" is not found in dut, it should satisfy rule "io_in_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_in_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_in_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_foldpc" is not found in dut, it should satisfy rule "io_in_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_ftqOffset" is not found in dut, it should satisfy rule "io_in_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_in_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_in_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_instr" is not found in dut, it should satisfy rule "io_in_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_in_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_in_2_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_in_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_in_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_pred_taken" is not found in dut, it should satisfy rule "io_in_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_bits_trigger" is not found in dut, it should satisfy rule "io_in_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_ready" is not found in dut, it should satisfy rule "io_in_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_2_valid" is not found in dut, it should satisfy rule "io_in_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_in_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_in_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_foldpc" is not found in dut, it should satisfy rule "io_in_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_ftqOffset" is not found in dut, it should satisfy rule "io_in_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_in_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_in_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_instr" is not found in dut, it should satisfy rule "io_in_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_in_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_in_3_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_in_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_in_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_pred_taken" is not found in dut, it should satisfy rule "io_in_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_bits_trigger" is not found in dut, it should satisfy rule "io_in_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_ready" is not found in dut, it should satisfy rule "io_in_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_3_valid" is not found in dut, it should satisfy rule "io_in_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_in_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_in_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_foldpc" is not found in dut, it should satisfy rule "io_in_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_ftqOffset" is not found in dut, it should satisfy rule "io_in_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_in_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_in_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_instr" is not found in dut, it should satisfy rule "io_in_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_in_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_in_4_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_in_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_in_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_pred_taken" is not found in dut, it should satisfy rule "io_in_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_bits_trigger" is not found in dut, it should satisfy rule "io_in_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_ready" is not found in dut, it should satisfy rule "io_in_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_4_valid" is not found in dut, it should satisfy rule "io_in_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_in_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_in_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_foldpc" is not found in dut, it should satisfy rule "io_in_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_ftqOffset" is not found in dut, it should satisfy rule "io_in_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_in_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_in_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_instr" is not found in dut, it should satisfy rule "io_in_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_in_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "io_in_5_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_in_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_in_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_pred_taken" is not found in dut, it should satisfy rule "io_in_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_bits_trigger" is not found in dut, it should satisfy rule "io_in_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_ready" is not found in dut, it should satisfy rule "io_in_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.in_5_valid" is not found in dut, it should satisfy rule "io_in_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_0_0_addr" is not found in dut, it should satisfy rule "io_intRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_0_0_hold" is not found in dut, it should satisfy rule "io_intRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_0_1_addr" is not found in dut, it should satisfy rule "io_intRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_0_1_hold" is not found in dut, it should satisfy rule "io_intRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_1_0_addr" is not found in dut, it should satisfy rule "io_intRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_1_0_hold" is not found in dut, it should satisfy rule "io_intRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_1_1_addr" is not found in dut, it should satisfy rule "io_intRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_1_1_hold" is not found in dut, it should satisfy rule "io_intRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_2_0_addr" is not found in dut, it should satisfy rule "io_intRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_2_0_hold" is not found in dut, it should satisfy rule "io_intRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_2_1_addr" is not found in dut, it should satisfy rule "io_intRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_2_1_hold" is not found in dut, it should satisfy rule "io_intRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_3_0_addr" is not found in dut, it should satisfy rule "io_intRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_3_0_hold" is not found in dut, it should satisfy rule "io_intRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_3_1_addr" is not found in dut, it should satisfy rule "io_intRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_3_1_hold" is not found in dut, it should satisfy rule "io_intRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_4_0_addr" is not found in dut, it should satisfy rule "io_intRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_4_0_hold" is not found in dut, it should satisfy rule "io_intRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_4_1_addr" is not found in dut, it should satisfy rule "io_intRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_4_1_hold" is not found in dut, it should satisfy rule "io_intRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_5_0_addr" is not found in dut, it should satisfy rule "io_intRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_5_0_hold" is not found in dut, it should satisfy rule "io_intRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_5_1_addr" is not found in dut, it should satisfy rule "io_intRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.intRat_5_1_hold" is not found in dut, it should satisfy rule "io_intRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_blockBackward" is not found in dut, it should satisfy rule "io_out_0_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_canRobCompress" is not found in dut, it should satisfy rule "io_out_0_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_commitType" is not found in dut, it should satisfy rule "io_out_0_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_out_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_out_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_firstUop" is not found in dut, it should satisfy rule "io_out_0_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_flushPipe" is not found in dut, it should satisfy rule "io_out_0_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_foldpc" is not found in dut, it should satisfy rule "io_out_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_fpWen" is not found in dut, it should satisfy rule "io_out_0_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_fpu_rm" is not found in dut, it should satisfy rule "io_out_0_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_fpu_typ" is not found in dut, it should satisfy rule "io_out_0_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_out_0_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_fpu_wflags" is not found in dut, it should satisfy rule "io_out_0_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_ftqOffset" is not found in dut, it should satisfy rule "io_out_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_out_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_out_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_fuOpType" is not found in dut, it should satisfy rule "io_out_0_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_fuType" is not found in dut, it should satisfy rule "io_out_0_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_imm" is not found in dut, it should satisfy rule "io_out_0_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_instr" is not found in dut, it should satisfy rule "io_out_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_out_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_isMove" is not found in dut, it should satisfy rule "io_out_0_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_isVset" is not found in dut, it should satisfy rule "io_out_0_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_isXSTrap" is not found in dut, it should satisfy rule "io_out_0_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_lastUop" is not found in dut, it should satisfy rule "io_out_0_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_ldest" is not found in dut, it should satisfy rule "io_out_0_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_lsrc_0" is not found in dut, it should satisfy rule "io_out_0_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_lsrc_1" is not found in dut, it should satisfy rule "io_out_0_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_lsrc_2" is not found in dut, it should satisfy rule "io_out_0_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_numWB" is not found in dut, it should satisfy rule "io_out_0_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_out_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_out_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_pred_taken" is not found in dut, it should satisfy rule "io_out_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_rfWen" is not found in dut, it should satisfy rule "io_out_0_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_selImm" is not found in dut, it should satisfy rule "io_out_0_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_srcType_0" is not found in dut, it should satisfy rule "io_out_0_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_srcType_1" is not found in dut, it should satisfy rule "io_out_0_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_srcType_2" is not found in dut, it should satisfy rule "io_out_0_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_srcType_3" is not found in dut, it should satisfy rule "io_out_0_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_srcType_4" is not found in dut, it should satisfy rule "io_out_0_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_trigger" is not found in dut, it should satisfy rule "io_out_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_uopIdx" is not found in dut, it should satisfy rule "io_out_0_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_uopSplitType" is not found in dut, it should satisfy rule "io_out_0_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_v0Wen" is not found in dut, it should satisfy rule "io_out_0_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vecWen" is not found in dut, it should satisfy rule "io_out_0_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vlWen" is not found in dut, it should satisfy rule "io_out_0_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vlsInstr" is not found in dut, it should satisfy rule "io_out_0_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_isExt" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_nf" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_specVill" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_specVma" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_specVta" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_veew" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_vill" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_vm" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_vma" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_vsew" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_vstart" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_vpu_vta" is not found in dut, it should satisfy rule "io_out_0_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_waitForward" is not found in dut, it should satisfy rule "io_out_0_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_bits_wfflags" is not found in dut, it should satisfy rule "io_out_0_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_ready" is not found in dut, it should satisfy rule "io_out_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_0_valid" is not found in dut, it should satisfy rule "io_out_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_blockBackward" is not found in dut, it should satisfy rule "io_out_1_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_canRobCompress" is not found in dut, it should satisfy rule "io_out_1_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_commitType" is not found in dut, it should satisfy rule "io_out_1_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_out_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_out_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_firstUop" is not found in dut, it should satisfy rule "io_out_1_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_flushPipe" is not found in dut, it should satisfy rule "io_out_1_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_foldpc" is not found in dut, it should satisfy rule "io_out_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_fpWen" is not found in dut, it should satisfy rule "io_out_1_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_fpu_rm" is not found in dut, it should satisfy rule "io_out_1_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_fpu_typ" is not found in dut, it should satisfy rule "io_out_1_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_out_1_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_fpu_wflags" is not found in dut, it should satisfy rule "io_out_1_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_ftqOffset" is not found in dut, it should satisfy rule "io_out_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_out_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_out_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_fuOpType" is not found in dut, it should satisfy rule "io_out_1_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_fuType" is not found in dut, it should satisfy rule "io_out_1_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_imm" is not found in dut, it should satisfy rule "io_out_1_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_instr" is not found in dut, it should satisfy rule "io_out_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_out_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_isMove" is not found in dut, it should satisfy rule "io_out_1_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_isVset" is not found in dut, it should satisfy rule "io_out_1_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_isXSTrap" is not found in dut, it should satisfy rule "io_out_1_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_lastUop" is not found in dut, it should satisfy rule "io_out_1_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_ldest" is not found in dut, it should satisfy rule "io_out_1_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_lsrc_0" is not found in dut, it should satisfy rule "io_out_1_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_lsrc_1" is not found in dut, it should satisfy rule "io_out_1_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_lsrc_2" is not found in dut, it should satisfy rule "io_out_1_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_numWB" is not found in dut, it should satisfy rule "io_out_1_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_out_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_out_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_pred_taken" is not found in dut, it should satisfy rule "io_out_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_rfWen" is not found in dut, it should satisfy rule "io_out_1_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_selImm" is not found in dut, it should satisfy rule "io_out_1_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_srcType_0" is not found in dut, it should satisfy rule "io_out_1_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_srcType_1" is not found in dut, it should satisfy rule "io_out_1_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_srcType_2" is not found in dut, it should satisfy rule "io_out_1_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_srcType_3" is not found in dut, it should satisfy rule "io_out_1_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_srcType_4" is not found in dut, it should satisfy rule "io_out_1_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_trigger" is not found in dut, it should satisfy rule "io_out_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_uopIdx" is not found in dut, it should satisfy rule "io_out_1_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_uopSplitType" is not found in dut, it should satisfy rule "io_out_1_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_v0Wen" is not found in dut, it should satisfy rule "io_out_1_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vecWen" is not found in dut, it should satisfy rule "io_out_1_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vlWen" is not found in dut, it should satisfy rule "io_out_1_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vlsInstr" is not found in dut, it should satisfy rule "io_out_1_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_isExt" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_nf" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_specVill" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_specVma" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_specVta" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_veew" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_vill" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_vm" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_vma" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_vsew" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_vstart" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_vpu_vta" is not found in dut, it should satisfy rule "io_out_1_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_waitForward" is not found in dut, it should satisfy rule "io_out_1_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_bits_wfflags" is not found in dut, it should satisfy rule "io_out_1_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_ready" is not found in dut, it should satisfy rule "io_out_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_1_valid" is not found in dut, it should satisfy rule "io_out_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_blockBackward" is not found in dut, it should satisfy rule "io_out_2_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_canRobCompress" is not found in dut, it should satisfy rule "io_out_2_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_commitType" is not found in dut, it should satisfy rule "io_out_2_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_out_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_out_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_firstUop" is not found in dut, it should satisfy rule "io_out_2_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_flushPipe" is not found in dut, it should satisfy rule "io_out_2_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_foldpc" is not found in dut, it should satisfy rule "io_out_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_fpWen" is not found in dut, it should satisfy rule "io_out_2_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_fpu_rm" is not found in dut, it should satisfy rule "io_out_2_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_fpu_typ" is not found in dut, it should satisfy rule "io_out_2_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_out_2_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_fpu_wflags" is not found in dut, it should satisfy rule "io_out_2_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_ftqOffset" is not found in dut, it should satisfy rule "io_out_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_out_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_out_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_fuOpType" is not found in dut, it should satisfy rule "io_out_2_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_fuType" is not found in dut, it should satisfy rule "io_out_2_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_imm" is not found in dut, it should satisfy rule "io_out_2_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_instr" is not found in dut, it should satisfy rule "io_out_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_out_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_isMove" is not found in dut, it should satisfy rule "io_out_2_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_isVset" is not found in dut, it should satisfy rule "io_out_2_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_isXSTrap" is not found in dut, it should satisfy rule "io_out_2_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_lastUop" is not found in dut, it should satisfy rule "io_out_2_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_ldest" is not found in dut, it should satisfy rule "io_out_2_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_lsrc_0" is not found in dut, it should satisfy rule "io_out_2_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_lsrc_1" is not found in dut, it should satisfy rule "io_out_2_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_lsrc_2" is not found in dut, it should satisfy rule "io_out_2_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_numWB" is not found in dut, it should satisfy rule "io_out_2_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_out_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_out_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_pred_taken" is not found in dut, it should satisfy rule "io_out_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_rfWen" is not found in dut, it should satisfy rule "io_out_2_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_selImm" is not found in dut, it should satisfy rule "io_out_2_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_srcType_0" is not found in dut, it should satisfy rule "io_out_2_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_srcType_1" is not found in dut, it should satisfy rule "io_out_2_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_srcType_2" is not found in dut, it should satisfy rule "io_out_2_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_srcType_3" is not found in dut, it should satisfy rule "io_out_2_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_srcType_4" is not found in dut, it should satisfy rule "io_out_2_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_trigger" is not found in dut, it should satisfy rule "io_out_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_uopIdx" is not found in dut, it should satisfy rule "io_out_2_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_uopSplitType" is not found in dut, it should satisfy rule "io_out_2_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_v0Wen" is not found in dut, it should satisfy rule "io_out_2_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vecWen" is not found in dut, it should satisfy rule "io_out_2_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vlWen" is not found in dut, it should satisfy rule "io_out_2_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vlsInstr" is not found in dut, it should satisfy rule "io_out_2_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_isExt" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_nf" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_specVill" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_specVma" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_specVta" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_veew" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_vill" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_vm" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_vma" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_vsew" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_vstart" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_vpu_vta" is not found in dut, it should satisfy rule "io_out_2_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_waitForward" is not found in dut, it should satisfy rule "io_out_2_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_bits_wfflags" is not found in dut, it should satisfy rule "io_out_2_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_ready" is not found in dut, it should satisfy rule "io_out_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_2_valid" is not found in dut, it should satisfy rule "io_out_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_blockBackward" is not found in dut, it should satisfy rule "io_out_3_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_canRobCompress" is not found in dut, it should satisfy rule "io_out_3_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_commitType" is not found in dut, it should satisfy rule "io_out_3_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_out_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_out_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_firstUop" is not found in dut, it should satisfy rule "io_out_3_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_flushPipe" is not found in dut, it should satisfy rule "io_out_3_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_foldpc" is not found in dut, it should satisfy rule "io_out_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_fpWen" is not found in dut, it should satisfy rule "io_out_3_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_fpu_rm" is not found in dut, it should satisfy rule "io_out_3_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_fpu_typ" is not found in dut, it should satisfy rule "io_out_3_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_out_3_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_fpu_wflags" is not found in dut, it should satisfy rule "io_out_3_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_ftqOffset" is not found in dut, it should satisfy rule "io_out_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_out_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_out_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_fuOpType" is not found in dut, it should satisfy rule "io_out_3_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_fuType" is not found in dut, it should satisfy rule "io_out_3_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_imm" is not found in dut, it should satisfy rule "io_out_3_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_instr" is not found in dut, it should satisfy rule "io_out_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_out_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_isMove" is not found in dut, it should satisfy rule "io_out_3_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_isVset" is not found in dut, it should satisfy rule "io_out_3_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_isXSTrap" is not found in dut, it should satisfy rule "io_out_3_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_lastUop" is not found in dut, it should satisfy rule "io_out_3_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_ldest" is not found in dut, it should satisfy rule "io_out_3_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_lsrc_0" is not found in dut, it should satisfy rule "io_out_3_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_lsrc_1" is not found in dut, it should satisfy rule "io_out_3_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_lsrc_2" is not found in dut, it should satisfy rule "io_out_3_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_numWB" is not found in dut, it should satisfy rule "io_out_3_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_out_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_out_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_pred_taken" is not found in dut, it should satisfy rule "io_out_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_rfWen" is not found in dut, it should satisfy rule "io_out_3_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_selImm" is not found in dut, it should satisfy rule "io_out_3_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_srcType_0" is not found in dut, it should satisfy rule "io_out_3_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_srcType_1" is not found in dut, it should satisfy rule "io_out_3_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_srcType_2" is not found in dut, it should satisfy rule "io_out_3_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_srcType_3" is not found in dut, it should satisfy rule "io_out_3_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_srcType_4" is not found in dut, it should satisfy rule "io_out_3_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_trigger" is not found in dut, it should satisfy rule "io_out_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_uopIdx" is not found in dut, it should satisfy rule "io_out_3_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_uopSplitType" is not found in dut, it should satisfy rule "io_out_3_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_v0Wen" is not found in dut, it should satisfy rule "io_out_3_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vecWen" is not found in dut, it should satisfy rule "io_out_3_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vlWen" is not found in dut, it should satisfy rule "io_out_3_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vlsInstr" is not found in dut, it should satisfy rule "io_out_3_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_isExt" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_nf" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_specVill" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_specVma" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_specVta" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_veew" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_vill" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_vm" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_vma" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_vsew" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_vstart" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_vpu_vta" is not found in dut, it should satisfy rule "io_out_3_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_waitForward" is not found in dut, it should satisfy rule "io_out_3_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_bits_wfflags" is not found in dut, it should satisfy rule "io_out_3_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_ready" is not found in dut, it should satisfy rule "io_out_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_3_valid" is not found in dut, it should satisfy rule "io_out_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_blockBackward" is not found in dut, it should satisfy rule "io_out_4_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_canRobCompress" is not found in dut, it should satisfy rule "io_out_4_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_commitType" is not found in dut, it should satisfy rule "io_out_4_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_out_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_out_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_firstUop" is not found in dut, it should satisfy rule "io_out_4_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_flushPipe" is not found in dut, it should satisfy rule "io_out_4_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_foldpc" is not found in dut, it should satisfy rule "io_out_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_fpWen" is not found in dut, it should satisfy rule "io_out_4_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_fpu_rm" is not found in dut, it should satisfy rule "io_out_4_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_fpu_typ" is not found in dut, it should satisfy rule "io_out_4_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_out_4_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_fpu_wflags" is not found in dut, it should satisfy rule "io_out_4_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_ftqOffset" is not found in dut, it should satisfy rule "io_out_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_out_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_out_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_fuOpType" is not found in dut, it should satisfy rule "io_out_4_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_fuType" is not found in dut, it should satisfy rule "io_out_4_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_imm" is not found in dut, it should satisfy rule "io_out_4_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_instr" is not found in dut, it should satisfy rule "io_out_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_out_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_isMove" is not found in dut, it should satisfy rule "io_out_4_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_isVset" is not found in dut, it should satisfy rule "io_out_4_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_isXSTrap" is not found in dut, it should satisfy rule "io_out_4_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_lastUop" is not found in dut, it should satisfy rule "io_out_4_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_ldest" is not found in dut, it should satisfy rule "io_out_4_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_lsrc_0" is not found in dut, it should satisfy rule "io_out_4_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_lsrc_1" is not found in dut, it should satisfy rule "io_out_4_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_lsrc_2" is not found in dut, it should satisfy rule "io_out_4_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_numWB" is not found in dut, it should satisfy rule "io_out_4_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_out_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_out_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_pred_taken" is not found in dut, it should satisfy rule "io_out_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_rfWen" is not found in dut, it should satisfy rule "io_out_4_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_selImm" is not found in dut, it should satisfy rule "io_out_4_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_srcType_0" is not found in dut, it should satisfy rule "io_out_4_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_srcType_1" is not found in dut, it should satisfy rule "io_out_4_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_srcType_2" is not found in dut, it should satisfy rule "io_out_4_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_srcType_3" is not found in dut, it should satisfy rule "io_out_4_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_srcType_4" is not found in dut, it should satisfy rule "io_out_4_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_trigger" is not found in dut, it should satisfy rule "io_out_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_uopIdx" is not found in dut, it should satisfy rule "io_out_4_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_uopSplitType" is not found in dut, it should satisfy rule "io_out_4_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_v0Wen" is not found in dut, it should satisfy rule "io_out_4_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vecWen" is not found in dut, it should satisfy rule "io_out_4_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vlWen" is not found in dut, it should satisfy rule "io_out_4_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vlsInstr" is not found in dut, it should satisfy rule "io_out_4_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_isExt" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_nf" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_specVill" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_specVma" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_specVta" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_veew" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_vill" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_vm" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_vma" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_vsew" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_vstart" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_vpu_vta" is not found in dut, it should satisfy rule "io_out_4_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_waitForward" is not found in dut, it should satisfy rule "io_out_4_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_bits_wfflags" is not found in dut, it should satisfy rule "io_out_4_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_ready" is not found in dut, it should satisfy rule "io_out_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_4_valid" is not found in dut, it should satisfy rule "io_out_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_blockBackward" is not found in dut, it should satisfy rule "io_out_5_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_canRobCompress" is not found in dut, it should satisfy rule "io_out_5_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_commitType" is not found in dut, it should satisfy rule "io_out_5_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "io_out_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_22" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_3" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "io_out_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_firstUop" is not found in dut, it should satisfy rule "io_out_5_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_flushPipe" is not found in dut, it should satisfy rule "io_out_5_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_foldpc" is not found in dut, it should satisfy rule "io_out_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_fpWen" is not found in dut, it should satisfy rule "io_out_5_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_fpu_rm" is not found in dut, it should satisfy rule "io_out_5_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_fpu_typ" is not found in dut, it should satisfy rule "io_out_5_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "io_out_5_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_fpu_wflags" is not found in dut, it should satisfy rule "io_out_5_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_ftqOffset" is not found in dut, it should satisfy rule "io_out_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_out_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_out_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_fuOpType" is not found in dut, it should satisfy rule "io_out_5_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_fuType" is not found in dut, it should satisfy rule "io_out_5_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_imm" is not found in dut, it should satisfy rule "io_out_5_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_instr" is not found in dut, it should satisfy rule "io_out_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "io_out_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_isMove" is not found in dut, it should satisfy rule "io_out_5_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_isVset" is not found in dut, it should satisfy rule "io_out_5_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_isXSTrap" is not found in dut, it should satisfy rule "io_out_5_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_lastUop" is not found in dut, it should satisfy rule "io_out_5_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_ldest" is not found in dut, it should satisfy rule "io_out_5_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_lsrc_0" is not found in dut, it should satisfy rule "io_out_5_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_lsrc_1" is not found in dut, it should satisfy rule "io_out_5_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_lsrc_2" is not found in dut, it should satisfy rule "io_out_5_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_numWB" is not found in dut, it should satisfy rule "io_out_5_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "io_out_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "io_out_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_pred_taken" is not found in dut, it should satisfy rule "io_out_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_rfWen" is not found in dut, it should satisfy rule "io_out_5_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_selImm" is not found in dut, it should satisfy rule "io_out_5_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_srcType_0" is not found in dut, it should satisfy rule "io_out_5_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_srcType_1" is not found in dut, it should satisfy rule "io_out_5_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_srcType_2" is not found in dut, it should satisfy rule "io_out_5_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_srcType_3" is not found in dut, it should satisfy rule "io_out_5_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_srcType_4" is not found in dut, it should satisfy rule "io_out_5_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_trigger" is not found in dut, it should satisfy rule "io_out_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_uopIdx" is not found in dut, it should satisfy rule "io_out_5_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_uopSplitType" is not found in dut, it should satisfy rule "io_out_5_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_v0Wen" is not found in dut, it should satisfy rule "io_out_5_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vecWen" is not found in dut, it should satisfy rule "io_out_5_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vlWen" is not found in dut, it should satisfy rule "io_out_5_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vlsInstr" is not found in dut, it should satisfy rule "io_out_5_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_isExt" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_isVleff" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_nf" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_specVill" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_specVma" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_specVsew" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_specVta" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_veew" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_vill" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_vlmul" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_vm" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_vma" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_vsew" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_vstart" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_vpu_vta" is not found in dut, it should satisfy rule "io_out_5_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_waitForward" is not found in dut, it should satisfy rule "io_out_5_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_bits_wfflags" is not found in dut, it should satisfy rule "io_out_5_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_ready" is not found in dut, it should satisfy rule "io_out_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.out_5_valid" is not found in dut, it should satisfy rule "io_out_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.perf_0_value" is not found in dut, it should satisfy rule "io_perf_0_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.perf_1_value" is not found in dut, it should satisfy rule "io_perf_1_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.perf_2_value" is not found in dut, it should satisfy rule "io_perf_2_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.perf_3_value" is not found in dut, it should satisfy rule "io_perf_3_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.redirect" is not found in dut, it should satisfy rule "io_redirect"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.toCSR_trapInstInfo_bits_ftqOffset" is not found in dut, it should satisfy rule "io_toCSR_trapInstInfo_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.toCSR_trapInstInfo_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "io_toCSR_trapInstInfo_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.toCSR_trapInstInfo_bits_ftqPtr_value" is not found in dut, it should satisfy rule "io_toCSR_trapInstInfo_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.toCSR_trapInstInfo_bits_instr" is not found in dut, it should satisfy rule "io_toCSR_trapInstInfo_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.toCSR_trapInstInfo_valid" is not found in dut, it should satisfy rule "io_toCSR_trapInstInfo_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_0_0_addr" is not found in dut, it should satisfy rule "io_vecRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_0_0_hold" is not found in dut, it should satisfy rule "io_vecRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_0_1_addr" is not found in dut, it should satisfy rule "io_vecRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_0_1_hold" is not found in dut, it should satisfy rule "io_vecRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_0_2_addr" is not found in dut, it should satisfy rule "io_vecRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_0_2_hold" is not found in dut, it should satisfy rule "io_vecRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_1_0_addr" is not found in dut, it should satisfy rule "io_vecRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_1_0_hold" is not found in dut, it should satisfy rule "io_vecRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_1_1_addr" is not found in dut, it should satisfy rule "io_vecRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_1_1_hold" is not found in dut, it should satisfy rule "io_vecRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_1_2_addr" is not found in dut, it should satisfy rule "io_vecRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_1_2_hold" is not found in dut, it should satisfy rule "io_vecRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_2_0_addr" is not found in dut, it should satisfy rule "io_vecRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_2_0_hold" is not found in dut, it should satisfy rule "io_vecRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_2_1_addr" is not found in dut, it should satisfy rule "io_vecRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_2_1_hold" is not found in dut, it should satisfy rule "io_vecRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_2_2_addr" is not found in dut, it should satisfy rule "io_vecRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_2_2_hold" is not found in dut, it should satisfy rule "io_vecRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_3_0_addr" is not found in dut, it should satisfy rule "io_vecRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_3_0_hold" is not found in dut, it should satisfy rule "io_vecRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_3_1_addr" is not found in dut, it should satisfy rule "io_vecRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_3_1_hold" is not found in dut, it should satisfy rule "io_vecRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_3_2_addr" is not found in dut, it should satisfy rule "io_vecRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_3_2_hold" is not found in dut, it should satisfy rule "io_vecRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_4_0_addr" is not found in dut, it should satisfy rule "io_vecRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_4_0_hold" is not found in dut, it should satisfy rule "io_vecRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_4_1_addr" is not found in dut, it should satisfy rule "io_vecRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_4_1_hold" is not found in dut, it should satisfy rule "io_vecRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_4_2_addr" is not found in dut, it should satisfy rule "io_vecRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_4_2_hold" is not found in dut, it should satisfy rule "io_vecRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_5_0_addr" is not found in dut, it should satisfy rule "io_vecRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_5_0_hold" is not found in dut, it should satisfy rule "io_vecRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_5_1_addr" is not found in dut, it should satisfy rule "io_vecRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_5_1_hold" is not found in dut, it should satisfy rule "io_vecRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_5_2_addr" is not found in dut, it should satisfy rule "io_vecRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vecRat_5_2_hold" is not found in dut, it should satisfy rule "io_vecRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vsetvlVType_illegal" is not found in dut, it should satisfy rule "io_vsetvlVType_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vsetvlVType_vlmul" is not found in dut, it should satisfy rule "io_vsetvlVType_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vsetvlVType_vma" is not found in dut, it should satisfy rule "io_vsetvlVType_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vsetvlVType_vsew" is not found in dut, it should satisfy rule "io_vsetvlVType_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vsetvlVType_vta" is not found in dut, it should satisfy rule "io_vsetvlVType_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "io.vstart" is not found in dut, it should satisfy rule "io_vstart"

Call

Teardown

SKIPPED test_rvc_expand_32bit_full[0-429496729] 0:00:00.000308

Test the RVC expand function with a full 32 bit instruction set

Description:

Randomly generate N 32-bit instructions for each check, and repeat the process K times.

Setup

[gw0] linux -- Python 3.10.12 /usr/bin/python3
('/usr/local/lib/python3.10/dist-packages/toffee_test/markers.py', 37, "Skipped: In Skiped tags: 'RARELY_USED'")

Teardown

SKIPPED test_rvc_expand_32bit_full[429496729-858993458] 0:00:00.000405

Test the RVC expand function with a full 32 bit instruction set

Description:

Randomly generate N 32-bit instructions for each check, and repeat the process K times.

Setup

[gw0] linux -- Python 3.10.12 /usr/bin/python3
('/usr/local/lib/python3.10/dist-packages/toffee_test/markers.py', 37, "Skipped: In Skiped tags: 'RARELY_USED'")

Teardown

SKIPPED test_rvc_expand_32bit_full[858993458-1288490187] 0:00:00.000161

Test the RVC expand function with a full 32 bit instruction set

Description:

Randomly generate N 32-bit instructions for each check, and repeat the process K times.

Setup

[gw0] linux -- Python 3.10.12 /usr/bin/python3
('/usr/local/lib/python3.10/dist-packages/toffee_test/markers.py', 37, "Skipped: In Skiped tags: 'RARELY_USED'")

Teardown

SKIPPED test_rvc_expand_32bit_full[1288490187-1717986916] 0:00:00.000162

Test the RVC expand function with a full 32 bit instruction set

Description:

Randomly generate N 32-bit instructions for each check, and repeat the process K times.

Setup

[gw0] linux -- Python 3.10.12 /usr/bin/python3
('/usr/local/lib/python3.10/dist-packages/toffee_test/markers.py', 37, "Skipped: In Skiped tags: 'RARELY_USED'")

Teardown

SKIPPED test_rvc_expand_32bit_full[1717986916-2147483645] 0:00:00.000171

Test the RVC expand function with a full 32 bit instruction set

Description:

Randomly generate N 32-bit instructions for each check, and repeat the process K times.

Setup

[gw0] linux -- Python 3.10.12 /usr/bin/python3
('/usr/local/lib/python3.10/dist-packages/toffee_test/markers.py', 37, "Skipped: In Skiped tags: 'RARELY_USED'")

Teardown

SKIPPED test_rvc_expand_32bit_full[2147483645-2576980374] 0:00:00.000150

Test the RVC expand function with a full 32 bit instruction set

Description:

Randomly generate N 32-bit instructions for each check, and repeat the process K times.

Setup

[gw0] linux -- Python 3.10.12 /usr/bin/python3
('/usr/local/lib/python3.10/dist-packages/toffee_test/markers.py', 37, "Skipped: In Skiped tags: 'RARELY_USED'")

Teardown

SKIPPED test_rvc_expand_32bit_full[2576980374-3006477103] 0:00:00.000170

Test the RVC expand function with a full 32 bit instruction set

Description:

Randomly generate N 32-bit instructions for each check, and repeat the process K times.

Setup

[gw0] linux -- Python 3.10.12 /usr/bin/python3
('/usr/local/lib/python3.10/dist-packages/toffee_test/markers.py', 37, "Skipped: In Skiped tags: 'RARELY_USED'")

Teardown

SKIPPED test_rvc_expand_32bit_full[3006477103-3435973832] 0:00:00.000157

Test the RVC expand function with a full 32 bit instruction set

Description:

Randomly generate N 32-bit instructions for each check, and repeat the process K times.

Setup

[gw0] linux -- Python 3.10.12 /usr/bin/python3
('/usr/local/lib/python3.10/dist-packages/toffee_test/markers.py', 37, "Skipped: In Skiped tags: 'RARELY_USED'")

Teardown

SKIPPED test_rvc_expand_32bit_full[3435973832-3865470561] 0:00:00.000418

Test the RVC expand function with a full 32 bit instruction set

Description:

Randomly generate N 32-bit instructions for each check, and repeat the process K times.

Setup

[gw0] linux -- Python 3.10.12 /usr/bin/python3
('/usr/local/lib/python3.10/dist-packages/toffee_test/markers.py', 37, "Skipped: In Skiped tags: 'RARELY_USED'")

Teardown

SKIPPED test_rvc_expand_32bit_full[3865470561-4294967296] 0:00:00.000410

Test the RVC expand function with a full 32 bit instruction set

Description:

Randomly generate N 32-bit instructions for each check, and repeat the process K times.

Setup

[gw0] linux -- Python 3.10.12 /usr/bin/python3
('/usr/local/lib/python3.10/dist-packages/toffee_test/markers.py', 37, "Skipped: In Skiped tags: 'RARELY_USED'")

Teardown

SKIPPED test_rvc_expand_32bit_randomN 0:00:00.000453

Test the RVC expand function with a random 32 bit instruction set

Description:

Randomly generate 32-bit instructions for testing

Setup

[gw0] linux -- Python 3.10.12 /usr/bin/python3
('/home/UnityChipForXiangShan/ut_frontend/ifu/rvc_expander/classical_version/test_rvc_expander.py', 111, 'Skipped: This test is allways failed, need to be fixed')

Teardown

PASSED test_rvc_expand_16bit_full[6553-13106] 0:00:11.389785

Test the RVC expand function with a full compressed instruction set

Description:

Perform an expand check on 16-bit compressed instructions within the range from 'start' to 'end'.

Setup

Call

Teardown

PASSED test_rvc_expand_16bit_full[26212-32765] 0:00:12.234566

Test the RVC expand function with a full compressed instruction set

Description:

Perform an expand check on 16-bit compressed instructions within the range from 'start' to 'end'.

Setup

Call

Teardown

PASSED test_rvc_expand_16bit_full[52424-58977] 0:00:11.891264

Test the RVC expand function with a full compressed instruction set

Description:

Perform an expand check on 16-bit compressed instructions within the range from 'start' to 'end'.

Setup

Call

Teardown

PASSED test_rvc_expand_16bit_full[13106-19659] 0:00:09.339642

Test the RVC expand function with a full compressed instruction set

Description:

Perform an expand check on 16-bit compressed instructions within the range from 'start' to 'end'.

Setup

Call

Teardown

PASSED test_rvc_expand_16bit_full[32765-39318] 0:00:08.925850

Test the RVC expand function with a full compressed instruction set

Description:

Perform an expand check on 16-bit compressed instructions within the range from 'start' to 'end'.

Setup

Call

Teardown

PASSED test_rvc_expand_16bit_full[58977-65536] 0:00:09.527923

Test the RVC expand function with a full compressed instruction set

Description:

Perform an expand check on 16-bit compressed instructions within the range from 'start' to 'end'.

Setup

Call

Teardown

PASSED test_rvc_expand_16bit_full[39318-45871] 0:00:09.463297

Test the RVC expand function with a full compressed instruction set

Description:

Perform an expand check on 16-bit compressed instructions within the range from 'start' to 'end'.

Setup

Call

Teardown

ut_frontend/ifu/rvc_expander/toffee_version/test/test_rvc.py 1211 0:01:30.621836

PASSED test_rvc_expand_32bit_smoke 0:00:01.600150

Test the RVC expand function with 1 fixed 32 bit instruction

Setup

Captured log setup
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "csrCtrl_singlestep" is not found in dut, it should satisfy rule "iocsrCtrl_singlestep"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_addr" is not found in dut, it should satisfy rule "iofpRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_hold" is not found in dut, it should satisfy rule "iofpRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_addr" is not found in dut, it should satisfy rule "iofpRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_hold" is not found in dut, it should satisfy rule "iofpRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_addr" is not found in dut, it should satisfy rule "iofpRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_hold" is not found in dut, it should satisfy rule "iofpRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_addr" is not found in dut, it should satisfy rule "iofpRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_hold" is not found in dut, it should satisfy rule "iofpRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_addr" is not found in dut, it should satisfy rule "iofpRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_hold" is not found in dut, it should satisfy rule "iofpRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_addr" is not found in dut, it should satisfy rule "iofpRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_hold" is not found in dut, it should satisfy rule "iofpRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_addr" is not found in dut, it should satisfy rule "iofpRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_hold" is not found in dut, it should satisfy rule "iofpRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_addr" is not found in dut, it should satisfy rule "iofpRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_hold" is not found in dut, it should satisfy rule "iofpRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_addr" is not found in dut, it should satisfy rule "iofpRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_hold" is not found in dut, it should satisfy rule "iofpRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_addr" is not found in dut, it should satisfy rule "iofpRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_hold" is not found in dut, it should satisfy rule "iofpRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_addr" is not found in dut, it should satisfy rule "iofpRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_hold" is not found in dut, it should satisfy rule "iofpRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_addr" is not found in dut, it should satisfy rule "iofpRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_hold" is not found in dut, it should satisfy rule "iofpRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_addr" is not found in dut, it should satisfy rule "iofpRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_hold" is not found in dut, it should satisfy rule "iofpRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_addr" is not found in dut, it should satisfy rule "iofpRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_hold" is not found in dut, it should satisfy rule "iofpRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_addr" is not found in dut, it should satisfy rule "iofpRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_hold" is not found in dut, it should satisfy rule "iofpRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_addr" is not found in dut, it should satisfy rule "iofpRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_hold" is not found in dut, it should satisfy rule "iofpRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_addr" is not found in dut, it should satisfy rule "iofpRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_hold" is not found in dut, it should satisfy rule "iofpRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_addr" is not found in dut, it should satisfy rule "iofpRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_hold" is not found in dut, it should satisfy rule "iofpRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_frm" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_frm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_fsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceGVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceGVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceVVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceVVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_vsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_vsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_special_cboI2F" is not found in dut, it should satisfy rule "iofromCSR_special_cboI2F"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hfence" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hfence"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_hasVsetvl" is not found in dut, it should satisfy rule "iofromRob_commitVType_hasVsetvl"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vma" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vta" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_valid" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_isResumeVType" is not found in dut, it should satisfy rule "iofromRob_isResumeVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkToArchVType" is not found in dut, it should satisfy rule "iofromRob_walkToArchVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vma" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vta" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_valid" is not found in dut, it should satisfy rule "iofromRob_walkVType_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_0" is not found in dut, it should satisfy rule "iofusion_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_1" is not found in dut, it should satisfy rule "iofusion_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_2" is not found in dut, it should satisfy rule "iofusion_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_3" is not found in dut, it should satisfy rule "iofusion_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_4" is not found in dut, it should satisfy rule "iofusion_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_foldpc" is not found in dut, it should satisfy rule "ioin_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_instr" is not found in dut, it should satisfy rule "ioin_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_0_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_trigger" is not found in dut, it should satisfy rule "ioin_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_ready" is not found in dut, it should satisfy rule "ioin_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_valid" is not found in dut, it should satisfy rule "ioin_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_foldpc" is not found in dut, it should satisfy rule "ioin_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_instr" is not found in dut, it should satisfy rule "ioin_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_1_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_trigger" is not found in dut, it should satisfy rule "ioin_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_ready" is not found in dut, it should satisfy rule "ioin_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_valid" is not found in dut, it should satisfy rule "ioin_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_foldpc" is not found in dut, it should satisfy rule "ioin_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_instr" is not found in dut, it should satisfy rule "ioin_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_2_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_trigger" is not found in dut, it should satisfy rule "ioin_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_ready" is not found in dut, it should satisfy rule "ioin_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_valid" is not found in dut, it should satisfy rule "ioin_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_foldpc" is not found in dut, it should satisfy rule "ioin_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_instr" is not found in dut, it should satisfy rule "ioin_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_3_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_trigger" is not found in dut, it should satisfy rule "ioin_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_ready" is not found in dut, it should satisfy rule "ioin_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_valid" is not found in dut, it should satisfy rule "ioin_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_foldpc" is not found in dut, it should satisfy rule "ioin_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_instr" is not found in dut, it should satisfy rule "ioin_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_4_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_trigger" is not found in dut, it should satisfy rule "ioin_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_ready" is not found in dut, it should satisfy rule "ioin_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_valid" is not found in dut, it should satisfy rule "ioin_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_foldpc" is not found in dut, it should satisfy rule "ioin_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_instr" is not found in dut, it should satisfy rule "ioin_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_5_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_trigger" is not found in dut, it should satisfy rule "ioin_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_ready" is not found in dut, it should satisfy rule "ioin_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_valid" is not found in dut, it should satisfy rule "ioin_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_addr" is not found in dut, it should satisfy rule "iointRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_hold" is not found in dut, it should satisfy rule "iointRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_addr" is not found in dut, it should satisfy rule "iointRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_hold" is not found in dut, it should satisfy rule "iointRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_addr" is not found in dut, it should satisfy rule "iointRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_hold" is not found in dut, it should satisfy rule "iointRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_addr" is not found in dut, it should satisfy rule "iointRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_hold" is not found in dut, it should satisfy rule "iointRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_addr" is not found in dut, it should satisfy rule "iointRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_hold" is not found in dut, it should satisfy rule "iointRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_addr" is not found in dut, it should satisfy rule "iointRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_hold" is not found in dut, it should satisfy rule "iointRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_addr" is not found in dut, it should satisfy rule "iointRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_hold" is not found in dut, it should satisfy rule "iointRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_addr" is not found in dut, it should satisfy rule "iointRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_hold" is not found in dut, it should satisfy rule "iointRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_addr" is not found in dut, it should satisfy rule "iointRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_hold" is not found in dut, it should satisfy rule "iointRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_addr" is not found in dut, it should satisfy rule "iointRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_hold" is not found in dut, it should satisfy rule "iointRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_addr" is not found in dut, it should satisfy rule "iointRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_hold" is not found in dut, it should satisfy rule "iointRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_addr" is not found in dut, it should satisfy rule "iointRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_hold" is not found in dut, it should satisfy rule "iointRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_0_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_0_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_commitType" is not found in dut, it should satisfy rule "ioout_0_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_firstUop" is not found in dut, it should satisfy rule "ioout_0_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_0_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_foldpc" is not found in dut, it should satisfy rule "ioout_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpWen" is not found in dut, it should satisfy rule "ioout_0_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_0_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuType" is not found in dut, it should satisfy rule "ioout_0_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_imm" is not found in dut, it should satisfy rule "ioout_0_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_instr" is not found in dut, it should satisfy rule "ioout_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isMove" is not found in dut, it should satisfy rule "ioout_0_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isVset" is not found in dut, it should satisfy rule "ioout_0_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_0_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lastUop" is not found in dut, it should satisfy rule "ioout_0_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ldest" is not found in dut, it should satisfy rule "ioout_0_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_numWB" is not found in dut, it should satisfy rule "ioout_0_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_rfWen" is not found in dut, it should satisfy rule "ioout_0_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_selImm" is not found in dut, it should satisfy rule "ioout_0_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_trigger" is not found in dut, it should satisfy rule "ioout_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_0_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_0_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_0_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vecWen" is not found in dut, it should satisfy rule "ioout_0_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlWen" is not found in dut, it should satisfy rule "ioout_0_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_0_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_waitForward" is not found in dut, it should satisfy rule "ioout_0_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_wfflags" is not found in dut, it should satisfy rule "ioout_0_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_ready" is not found in dut, it should satisfy rule "ioout_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_valid" is not found in dut, it should satisfy rule "ioout_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_1_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_1_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_commitType" is not found in dut, it should satisfy rule "ioout_1_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_firstUop" is not found in dut, it should satisfy rule "ioout_1_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_1_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_foldpc" is not found in dut, it should satisfy rule "ioout_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpWen" is not found in dut, it should satisfy rule "ioout_1_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_1_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuType" is not found in dut, it should satisfy rule "ioout_1_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_imm" is not found in dut, it should satisfy rule "ioout_1_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_instr" is not found in dut, it should satisfy rule "ioout_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isMove" is not found in dut, it should satisfy rule "ioout_1_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isVset" is not found in dut, it should satisfy rule "ioout_1_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_1_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lastUop" is not found in dut, it should satisfy rule "ioout_1_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ldest" is not found in dut, it should satisfy rule "ioout_1_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_numWB" is not found in dut, it should satisfy rule "ioout_1_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_rfWen" is not found in dut, it should satisfy rule "ioout_1_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_selImm" is not found in dut, it should satisfy rule "ioout_1_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_trigger" is not found in dut, it should satisfy rule "ioout_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_1_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_1_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_1_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vecWen" is not found in dut, it should satisfy rule "ioout_1_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlWen" is not found in dut, it should satisfy rule "ioout_1_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_1_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_waitForward" is not found in dut, it should satisfy rule "ioout_1_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_wfflags" is not found in dut, it should satisfy rule "ioout_1_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_ready" is not found in dut, it should satisfy rule "ioout_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_valid" is not found in dut, it should satisfy rule "ioout_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_2_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_2_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_commitType" is not found in dut, it should satisfy rule "ioout_2_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_firstUop" is not found in dut, it should satisfy rule "ioout_2_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_2_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_foldpc" is not found in dut, it should satisfy rule "ioout_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpWen" is not found in dut, it should satisfy rule "ioout_2_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_2_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuType" is not found in dut, it should satisfy rule "ioout_2_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_imm" is not found in dut, it should satisfy rule "ioout_2_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_instr" is not found in dut, it should satisfy rule "ioout_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isMove" is not found in dut, it should satisfy rule "ioout_2_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isVset" is not found in dut, it should satisfy rule "ioout_2_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_2_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lastUop" is not found in dut, it should satisfy rule "ioout_2_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ldest" is not found in dut, it should satisfy rule "ioout_2_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_numWB" is not found in dut, it should satisfy rule "ioout_2_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_rfWen" is not found in dut, it should satisfy rule "ioout_2_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_selImm" is not found in dut, it should satisfy rule "ioout_2_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_trigger" is not found in dut, it should satisfy rule "ioout_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_2_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_2_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_2_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vecWen" is not found in dut, it should satisfy rule "ioout_2_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlWen" is not found in dut, it should satisfy rule "ioout_2_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_2_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_waitForward" is not found in dut, it should satisfy rule "ioout_2_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_wfflags" is not found in dut, it should satisfy rule "ioout_2_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_ready" is not found in dut, it should satisfy rule "ioout_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_valid" is not found in dut, it should satisfy rule "ioout_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_3_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_3_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_commitType" is not found in dut, it should satisfy rule "ioout_3_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_firstUop" is not found in dut, it should satisfy rule "ioout_3_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_3_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_foldpc" is not found in dut, it should satisfy rule "ioout_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpWen" is not found in dut, it should satisfy rule "ioout_3_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_3_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuType" is not found in dut, it should satisfy rule "ioout_3_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_imm" is not found in dut, it should satisfy rule "ioout_3_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_instr" is not found in dut, it should satisfy rule "ioout_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isMove" is not found in dut, it should satisfy rule "ioout_3_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isVset" is not found in dut, it should satisfy rule "ioout_3_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_3_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lastUop" is not found in dut, it should satisfy rule "ioout_3_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ldest" is not found in dut, it should satisfy rule "ioout_3_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_numWB" is not found in dut, it should satisfy rule "ioout_3_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_rfWen" is not found in dut, it should satisfy rule "ioout_3_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_selImm" is not found in dut, it should satisfy rule "ioout_3_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_trigger" is not found in dut, it should satisfy rule "ioout_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_3_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_3_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_3_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vecWen" is not found in dut, it should satisfy rule "ioout_3_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlWen" is not found in dut, it should satisfy rule "ioout_3_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_3_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_waitForward" is not found in dut, it should satisfy rule "ioout_3_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_wfflags" is not found in dut, it should satisfy rule "ioout_3_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_ready" is not found in dut, it should satisfy rule "ioout_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_valid" is not found in dut, it should satisfy rule "ioout_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_4_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_4_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_commitType" is not found in dut, it should satisfy rule "ioout_4_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_firstUop" is not found in dut, it should satisfy rule "ioout_4_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_4_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_foldpc" is not found in dut, it should satisfy rule "ioout_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpWen" is not found in dut, it should satisfy rule "ioout_4_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_4_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuType" is not found in dut, it should satisfy rule "ioout_4_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_imm" is not found in dut, it should satisfy rule "ioout_4_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_instr" is not found in dut, it should satisfy rule "ioout_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isMove" is not found in dut, it should satisfy rule "ioout_4_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isVset" is not found in dut, it should satisfy rule "ioout_4_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_4_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lastUop" is not found in dut, it should satisfy rule "ioout_4_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ldest" is not found in dut, it should satisfy rule "ioout_4_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_numWB" is not found in dut, it should satisfy rule "ioout_4_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_rfWen" is not found in dut, it should satisfy rule "ioout_4_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_selImm" is not found in dut, it should satisfy rule "ioout_4_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_trigger" is not found in dut, it should satisfy rule "ioout_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_4_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_4_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_4_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vecWen" is not found in dut, it should satisfy rule "ioout_4_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlWen" is not found in dut, it should satisfy rule "ioout_4_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_4_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_waitForward" is not found in dut, it should satisfy rule "ioout_4_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_wfflags" is not found in dut, it should satisfy rule "ioout_4_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_ready" is not found in dut, it should satisfy rule "ioout_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_valid" is not found in dut, it should satisfy rule "ioout_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_5_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_5_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_commitType" is not found in dut, it should satisfy rule "ioout_5_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_firstUop" is not found in dut, it should satisfy rule "ioout_5_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_5_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_foldpc" is not found in dut, it should satisfy rule "ioout_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpWen" is not found in dut, it should satisfy rule "ioout_5_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_5_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuType" is not found in dut, it should satisfy rule "ioout_5_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_imm" is not found in dut, it should satisfy rule "ioout_5_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_instr" is not found in dut, it should satisfy rule "ioout_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isMove" is not found in dut, it should satisfy rule "ioout_5_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isVset" is not found in dut, it should satisfy rule "ioout_5_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_5_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lastUop" is not found in dut, it should satisfy rule "ioout_5_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ldest" is not found in dut, it should satisfy rule "ioout_5_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_numWB" is not found in dut, it should satisfy rule "ioout_5_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_rfWen" is not found in dut, it should satisfy rule "ioout_5_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_selImm" is not found in dut, it should satisfy rule "ioout_5_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_trigger" is not found in dut, it should satisfy rule "ioout_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_5_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_5_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_5_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vecWen" is not found in dut, it should satisfy rule "ioout_5_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlWen" is not found in dut, it should satisfy rule "ioout_5_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_5_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_waitForward" is not found in dut, it should satisfy rule "ioout_5_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_wfflags" is not found in dut, it should satisfy rule "ioout_5_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_ready" is not found in dut, it should satisfy rule "ioout_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_valid" is not found in dut, it should satisfy rule "ioout_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_0_value" is not found in dut, it should satisfy rule "ioperf_0_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_1_value" is not found in dut, it should satisfy rule "ioperf_1_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_2_value" is not found in dut, it should satisfy rule "ioperf_2_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_3_value" is not found in dut, it should satisfy rule "ioperf_3_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "redirect" is not found in dut, it should satisfy rule "ioredirect"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqOffset" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_value" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_instr" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_valid" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_addr" is not found in dut, it should satisfy rule "iovecRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_hold" is not found in dut, it should satisfy rule "iovecRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_addr" is not found in dut, it should satisfy rule "iovecRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_hold" is not found in dut, it should satisfy rule "iovecRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_addr" is not found in dut, it should satisfy rule "iovecRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_hold" is not found in dut, it should satisfy rule "iovecRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_addr" is not found in dut, it should satisfy rule "iovecRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_hold" is not found in dut, it should satisfy rule "iovecRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_addr" is not found in dut, it should satisfy rule "iovecRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_hold" is not found in dut, it should satisfy rule "iovecRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_addr" is not found in dut, it should satisfy rule "iovecRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_hold" is not found in dut, it should satisfy rule "iovecRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_addr" is not found in dut, it should satisfy rule "iovecRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_hold" is not found in dut, it should satisfy rule "iovecRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_addr" is not found in dut, it should satisfy rule "iovecRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_hold" is not found in dut, it should satisfy rule "iovecRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_addr" is not found in dut, it should satisfy rule "iovecRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_hold" is not found in dut, it should satisfy rule "iovecRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_addr" is not found in dut, it should satisfy rule "iovecRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_hold" is not found in dut, it should satisfy rule "iovecRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_addr" is not found in dut, it should satisfy rule "iovecRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_hold" is not found in dut, it should satisfy rule "iovecRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_addr" is not found in dut, it should satisfy rule "iovecRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_hold" is not found in dut, it should satisfy rule "iovecRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_addr" is not found in dut, it should satisfy rule "iovecRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_hold" is not found in dut, it should satisfy rule "iovecRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_addr" is not found in dut, it should satisfy rule "iovecRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_hold" is not found in dut, it should satisfy rule "iovecRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_addr" is not found in dut, it should satisfy rule "iovecRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_hold" is not found in dut, it should satisfy rule "iovecRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_addr" is not found in dut, it should satisfy rule "iovecRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_hold" is not found in dut, it should satisfy rule "iovecRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_addr" is not found in dut, it should satisfy rule "iovecRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_hold" is not found in dut, it should satisfy rule "iovecRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_addr" is not found in dut, it should satisfy rule "iovecRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_hold" is not found in dut, it should satisfy rule "iovecRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_illegal" is not found in dut, it should satisfy rule "iovsetvlVType_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vlmul" is not found in dut, it should satisfy rule "iovsetvlVType_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vma" is not found in dut, it should satisfy rule "iovsetvlVType_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vsew" is not found in dut, it should satisfy rule "iovsetvlVType_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vta" is not found in dut, it should satisfy rule "iovsetvlVType_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vstart" is not found in dut, it should satisfy rule "iovstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "iofsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ioill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "ioin"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "ioout_bits"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "csrCtrl_singlestep" is not found in dut, it should satisfy rule "iocsrCtrl_singlestep"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_addr" is not found in dut, it should satisfy rule "iofpRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_hold" is not found in dut, it should satisfy rule "iofpRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_addr" is not found in dut, it should satisfy rule "iofpRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_hold" is not found in dut, it should satisfy rule "iofpRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_addr" is not found in dut, it should satisfy rule "iofpRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_hold" is not found in dut, it should satisfy rule "iofpRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_addr" is not found in dut, it should satisfy rule "iofpRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_hold" is not found in dut, it should satisfy rule "iofpRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_addr" is not found in dut, it should satisfy rule "iofpRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_hold" is not found in dut, it should satisfy rule "iofpRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_addr" is not found in dut, it should satisfy rule "iofpRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_hold" is not found in dut, it should satisfy rule "iofpRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_addr" is not found in dut, it should satisfy rule "iofpRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_hold" is not found in dut, it should satisfy rule "iofpRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_addr" is not found in dut, it should satisfy rule "iofpRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_hold" is not found in dut, it should satisfy rule "iofpRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_addr" is not found in dut, it should satisfy rule "iofpRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_hold" is not found in dut, it should satisfy rule "iofpRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_addr" is not found in dut, it should satisfy rule "iofpRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_hold" is not found in dut, it should satisfy rule "iofpRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_addr" is not found in dut, it should satisfy rule "iofpRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_hold" is not found in dut, it should satisfy rule "iofpRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_addr" is not found in dut, it should satisfy rule "iofpRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_hold" is not found in dut, it should satisfy rule "iofpRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_addr" is not found in dut, it should satisfy rule "iofpRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_hold" is not found in dut, it should satisfy rule "iofpRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_addr" is not found in dut, it should satisfy rule "iofpRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_hold" is not found in dut, it should satisfy rule "iofpRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_addr" is not found in dut, it should satisfy rule "iofpRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_hold" is not found in dut, it should satisfy rule "iofpRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_addr" is not found in dut, it should satisfy rule "iofpRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_hold" is not found in dut, it should satisfy rule "iofpRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_addr" is not found in dut, it should satisfy rule "iofpRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_hold" is not found in dut, it should satisfy rule "iofpRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_addr" is not found in dut, it should satisfy rule "iofpRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_hold" is not found in dut, it should satisfy rule "iofpRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_frm" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_frm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_fsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceGVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceGVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceVVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceVVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_vsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_vsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_special_cboI2F" is not found in dut, it should satisfy rule "iofromCSR_special_cboI2F"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hfence" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hfence"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_hasVsetvl" is not found in dut, it should satisfy rule "iofromRob_commitVType_hasVsetvl"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vma" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vta" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_valid" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_isResumeVType" is not found in dut, it should satisfy rule "iofromRob_isResumeVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkToArchVType" is not found in dut, it should satisfy rule "iofromRob_walkToArchVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vma" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vta" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_valid" is not found in dut, it should satisfy rule "iofromRob_walkVType_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_0" is not found in dut, it should satisfy rule "iofusion_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_1" is not found in dut, it should satisfy rule "iofusion_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_2" is not found in dut, it should satisfy rule "iofusion_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_3" is not found in dut, it should satisfy rule "iofusion_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_4" is not found in dut, it should satisfy rule "iofusion_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_foldpc" is not found in dut, it should satisfy rule "ioin_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_instr" is not found in dut, it should satisfy rule "ioin_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_0_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_trigger" is not found in dut, it should satisfy rule "ioin_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_ready" is not found in dut, it should satisfy rule "ioin_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_valid" is not found in dut, it should satisfy rule "ioin_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_foldpc" is not found in dut, it should satisfy rule "ioin_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_instr" is not found in dut, it should satisfy rule "ioin_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_1_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_trigger" is not found in dut, it should satisfy rule "ioin_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_ready" is not found in dut, it should satisfy rule "ioin_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_valid" is not found in dut, it should satisfy rule "ioin_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_foldpc" is not found in dut, it should satisfy rule "ioin_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_instr" is not found in dut, it should satisfy rule "ioin_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_2_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_trigger" is not found in dut, it should satisfy rule "ioin_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_ready" is not found in dut, it should satisfy rule "ioin_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_valid" is not found in dut, it should satisfy rule "ioin_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_foldpc" is not found in dut, it should satisfy rule "ioin_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_instr" is not found in dut, it should satisfy rule "ioin_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_3_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_trigger" is not found in dut, it should satisfy rule "ioin_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_ready" is not found in dut, it should satisfy rule "ioin_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_valid" is not found in dut, it should satisfy rule "ioin_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_foldpc" is not found in dut, it should satisfy rule "ioin_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_instr" is not found in dut, it should satisfy rule "ioin_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_4_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_trigger" is not found in dut, it should satisfy rule "ioin_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_ready" is not found in dut, it should satisfy rule "ioin_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_valid" is not found in dut, it should satisfy rule "ioin_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_foldpc" is not found in dut, it should satisfy rule "ioin_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_instr" is not found in dut, it should satisfy rule "ioin_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_5_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_trigger" is not found in dut, it should satisfy rule "ioin_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_ready" is not found in dut, it should satisfy rule "ioin_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_valid" is not found in dut, it should satisfy rule "ioin_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_addr" is not found in dut, it should satisfy rule "iointRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_hold" is not found in dut, it should satisfy rule "iointRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_addr" is not found in dut, it should satisfy rule "iointRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_hold" is not found in dut, it should satisfy rule "iointRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_addr" is not found in dut, it should satisfy rule "iointRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_hold" is not found in dut, it should satisfy rule "iointRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_addr" is not found in dut, it should satisfy rule "iointRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_hold" is not found in dut, it should satisfy rule "iointRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_addr" is not found in dut, it should satisfy rule "iointRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_hold" is not found in dut, it should satisfy rule "iointRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_addr" is not found in dut, it should satisfy rule "iointRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_hold" is not found in dut, it should satisfy rule "iointRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_addr" is not found in dut, it should satisfy rule "iointRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_hold" is not found in dut, it should satisfy rule "iointRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_addr" is not found in dut, it should satisfy rule "iointRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_hold" is not found in dut, it should satisfy rule "iointRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_addr" is not found in dut, it should satisfy rule "iointRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_hold" is not found in dut, it should satisfy rule "iointRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_addr" is not found in dut, it should satisfy rule "iointRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_hold" is not found in dut, it should satisfy rule "iointRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_addr" is not found in dut, it should satisfy rule "iointRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_hold" is not found in dut, it should satisfy rule "iointRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_addr" is not found in dut, it should satisfy rule "iointRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_hold" is not found in dut, it should satisfy rule "iointRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_0_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_0_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_commitType" is not found in dut, it should satisfy rule "ioout_0_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_firstUop" is not found in dut, it should satisfy rule "ioout_0_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_0_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_foldpc" is not found in dut, it should satisfy rule "ioout_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpWen" is not found in dut, it should satisfy rule "ioout_0_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_0_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuType" is not found in dut, it should satisfy rule "ioout_0_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_imm" is not found in dut, it should satisfy rule "ioout_0_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_instr" is not found in dut, it should satisfy rule "ioout_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isMove" is not found in dut, it should satisfy rule "ioout_0_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isVset" is not found in dut, it should satisfy rule "ioout_0_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_0_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lastUop" is not found in dut, it should satisfy rule "ioout_0_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ldest" is not found in dut, it should satisfy rule "ioout_0_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_numWB" is not found in dut, it should satisfy rule "ioout_0_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_rfWen" is not found in dut, it should satisfy rule "ioout_0_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_selImm" is not found in dut, it should satisfy rule "ioout_0_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_trigger" is not found in dut, it should satisfy rule "ioout_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_0_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_0_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_0_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vecWen" is not found in dut, it should satisfy rule "ioout_0_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlWen" is not found in dut, it should satisfy rule "ioout_0_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_0_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_waitForward" is not found in dut, it should satisfy rule "ioout_0_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_wfflags" is not found in dut, it should satisfy rule "ioout_0_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_ready" is not found in dut, it should satisfy rule "ioout_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_valid" is not found in dut, it should satisfy rule "ioout_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_1_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_1_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_commitType" is not found in dut, it should satisfy rule "ioout_1_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_firstUop" is not found in dut, it should satisfy rule "ioout_1_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_1_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_foldpc" is not found in dut, it should satisfy rule "ioout_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpWen" is not found in dut, it should satisfy rule "ioout_1_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_1_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuType" is not found in dut, it should satisfy rule "ioout_1_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_imm" is not found in dut, it should satisfy rule "ioout_1_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_instr" is not found in dut, it should satisfy rule "ioout_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isMove" is not found in dut, it should satisfy rule "ioout_1_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isVset" is not found in dut, it should satisfy rule "ioout_1_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_1_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lastUop" is not found in dut, it should satisfy rule "ioout_1_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ldest" is not found in dut, it should satisfy rule "ioout_1_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_numWB" is not found in dut, it should satisfy rule "ioout_1_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_rfWen" is not found in dut, it should satisfy rule "ioout_1_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_selImm" is not found in dut, it should satisfy rule "ioout_1_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_trigger" is not found in dut, it should satisfy rule "ioout_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_1_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_1_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_1_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vecWen" is not found in dut, it should satisfy rule "ioout_1_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlWen" is not found in dut, it should satisfy rule "ioout_1_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_1_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_waitForward" is not found in dut, it should satisfy rule "ioout_1_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_wfflags" is not found in dut, it should satisfy rule "ioout_1_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_ready" is not found in dut, it should satisfy rule "ioout_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_valid" is not found in dut, it should satisfy rule "ioout_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_2_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_2_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_commitType" is not found in dut, it should satisfy rule "ioout_2_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_firstUop" is not found in dut, it should satisfy rule "ioout_2_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_2_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_foldpc" is not found in dut, it should satisfy rule "ioout_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpWen" is not found in dut, it should satisfy rule "ioout_2_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_2_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuType" is not found in dut, it should satisfy rule "ioout_2_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_imm" is not found in dut, it should satisfy rule "ioout_2_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_instr" is not found in dut, it should satisfy rule "ioout_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isMove" is not found in dut, it should satisfy rule "ioout_2_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isVset" is not found in dut, it should satisfy rule "ioout_2_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_2_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lastUop" is not found in dut, it should satisfy rule "ioout_2_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ldest" is not found in dut, it should satisfy rule "ioout_2_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_numWB" is not found in dut, it should satisfy rule "ioout_2_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_rfWen" is not found in dut, it should satisfy rule "ioout_2_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_selImm" is not found in dut, it should satisfy rule "ioout_2_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_trigger" is not found in dut, it should satisfy rule "ioout_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_2_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_2_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_2_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vecWen" is not found in dut, it should satisfy rule "ioout_2_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlWen" is not found in dut, it should satisfy rule "ioout_2_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_2_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_waitForward" is not found in dut, it should satisfy rule "ioout_2_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_wfflags" is not found in dut, it should satisfy rule "ioout_2_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_ready" is not found in dut, it should satisfy rule "ioout_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_valid" is not found in dut, it should satisfy rule "ioout_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_3_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_3_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_commitType" is not found in dut, it should satisfy rule "ioout_3_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_firstUop" is not found in dut, it should satisfy rule "ioout_3_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_3_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_foldpc" is not found in dut, it should satisfy rule "ioout_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpWen" is not found in dut, it should satisfy rule "ioout_3_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_3_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuType" is not found in dut, it should satisfy rule "ioout_3_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_imm" is not found in dut, it should satisfy rule "ioout_3_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_instr" is not found in dut, it should satisfy rule "ioout_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isMove" is not found in dut, it should satisfy rule "ioout_3_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isVset" is not found in dut, it should satisfy rule "ioout_3_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_3_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lastUop" is not found in dut, it should satisfy rule "ioout_3_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ldest" is not found in dut, it should satisfy rule "ioout_3_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_numWB" is not found in dut, it should satisfy rule "ioout_3_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_rfWen" is not found in dut, it should satisfy rule "ioout_3_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_selImm" is not found in dut, it should satisfy rule "ioout_3_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_trigger" is not found in dut, it should satisfy rule "ioout_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_3_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_3_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_3_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vecWen" is not found in dut, it should satisfy rule "ioout_3_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlWen" is not found in dut, it should satisfy rule "ioout_3_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_3_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_waitForward" is not found in dut, it should satisfy rule "ioout_3_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_wfflags" is not found in dut, it should satisfy rule "ioout_3_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_ready" is not found in dut, it should satisfy rule "ioout_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_valid" is not found in dut, it should satisfy rule "ioout_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_4_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_4_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_commitType" is not found in dut, it should satisfy rule "ioout_4_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_firstUop" is not found in dut, it should satisfy rule "ioout_4_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_4_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_foldpc" is not found in dut, it should satisfy rule "ioout_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpWen" is not found in dut, it should satisfy rule "ioout_4_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_4_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuType" is not found in dut, it should satisfy rule "ioout_4_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_imm" is not found in dut, it should satisfy rule "ioout_4_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_instr" is not found in dut, it should satisfy rule "ioout_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isMove" is not found in dut, it should satisfy rule "ioout_4_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isVset" is not found in dut, it should satisfy rule "ioout_4_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_4_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lastUop" is not found in dut, it should satisfy rule "ioout_4_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ldest" is not found in dut, it should satisfy rule "ioout_4_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_numWB" is not found in dut, it should satisfy rule "ioout_4_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_rfWen" is not found in dut, it should satisfy rule "ioout_4_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_selImm" is not found in dut, it should satisfy rule "ioout_4_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_trigger" is not found in dut, it should satisfy rule "ioout_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_4_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_4_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_4_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vecWen" is not found in dut, it should satisfy rule "ioout_4_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlWen" is not found in dut, it should satisfy rule "ioout_4_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_4_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_waitForward" is not found in dut, it should satisfy rule "ioout_4_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_wfflags" is not found in dut, it should satisfy rule "ioout_4_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_ready" is not found in dut, it should satisfy rule "ioout_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_valid" is not found in dut, it should satisfy rule "ioout_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_5_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_5_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_commitType" is not found in dut, it should satisfy rule "ioout_5_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_firstUop" is not found in dut, it should satisfy rule "ioout_5_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_5_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_foldpc" is not found in dut, it should satisfy rule "ioout_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpWen" is not found in dut, it should satisfy rule "ioout_5_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_5_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuType" is not found in dut, it should satisfy rule "ioout_5_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_imm" is not found in dut, it should satisfy rule "ioout_5_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_instr" is not found in dut, it should satisfy rule "ioout_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isMove" is not found in dut, it should satisfy rule "ioout_5_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isVset" is not found in dut, it should satisfy rule "ioout_5_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_5_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lastUop" is not found in dut, it should satisfy rule "ioout_5_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ldest" is not found in dut, it should satisfy rule "ioout_5_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_numWB" is not found in dut, it should satisfy rule "ioout_5_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_rfWen" is not found in dut, it should satisfy rule "ioout_5_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_selImm" is not found in dut, it should satisfy rule "ioout_5_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_trigger" is not found in dut, it should satisfy rule "ioout_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_5_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_5_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_5_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vecWen" is not found in dut, it should satisfy rule "ioout_5_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlWen" is not found in dut, it should satisfy rule "ioout_5_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_5_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_waitForward" is not found in dut, it should satisfy rule "ioout_5_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_wfflags" is not found in dut, it should satisfy rule "ioout_5_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_ready" is not found in dut, it should satisfy rule "ioout_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_valid" is not found in dut, it should satisfy rule "ioout_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_0_value" is not found in dut, it should satisfy rule "ioperf_0_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_1_value" is not found in dut, it should satisfy rule "ioperf_1_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_2_value" is not found in dut, it should satisfy rule "ioperf_2_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_3_value" is not found in dut, it should satisfy rule "ioperf_3_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "redirect" is not found in dut, it should satisfy rule "ioredirect"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqOffset" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_value" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_instr" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_valid" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_addr" is not found in dut, it should satisfy rule "iovecRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_hold" is not found in dut, it should satisfy rule "iovecRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_addr" is not found in dut, it should satisfy rule "iovecRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_hold" is not found in dut, it should satisfy rule "iovecRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_addr" is not found in dut, it should satisfy rule "iovecRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_hold" is not found in dut, it should satisfy rule "iovecRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_addr" is not found in dut, it should satisfy rule "iovecRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_hold" is not found in dut, it should satisfy rule "iovecRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_addr" is not found in dut, it should satisfy rule "iovecRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_hold" is not found in dut, it should satisfy rule "iovecRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_addr" is not found in dut, it should satisfy rule "iovecRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_hold" is not found in dut, it should satisfy rule "iovecRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_addr" is not found in dut, it should satisfy rule "iovecRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_hold" is not found in dut, it should satisfy rule "iovecRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_addr" is not found in dut, it should satisfy rule "iovecRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_hold" is not found in dut, it should satisfy rule "iovecRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_addr" is not found in dut, it should satisfy rule "iovecRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_hold" is not found in dut, it should satisfy rule "iovecRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_addr" is not found in dut, it should satisfy rule "iovecRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_hold" is not found in dut, it should satisfy rule "iovecRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_addr" is not found in dut, it should satisfy rule "iovecRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_hold" is not found in dut, it should satisfy rule "iovecRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_addr" is not found in dut, it should satisfy rule "iovecRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_hold" is not found in dut, it should satisfy rule "iovecRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_addr" is not found in dut, it should satisfy rule "iovecRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_hold" is not found in dut, it should satisfy rule "iovecRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_addr" is not found in dut, it should satisfy rule "iovecRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_hold" is not found in dut, it should satisfy rule "iovecRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_addr" is not found in dut, it should satisfy rule "iovecRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_hold" is not found in dut, it should satisfy rule "iovecRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_addr" is not found in dut, it should satisfy rule "iovecRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_hold" is not found in dut, it should satisfy rule "iovecRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_addr" is not found in dut, it should satisfy rule "iovecRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_hold" is not found in dut, it should satisfy rule "iovecRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_addr" is not found in dut, it should satisfy rule "iovecRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_hold" is not found in dut, it should satisfy rule "iovecRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_illegal" is not found in dut, it should satisfy rule "iovsetvlVType_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vlmul" is not found in dut, it should satisfy rule "iovsetvlVType_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vma" is not found in dut, it should satisfy rule "iovsetvlVType_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vsew" is not found in dut, it should satisfy rule "iovsetvlVType_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vta" is not found in dut, it should satisfy rule "iovsetvlVType_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vstart" is not found in dut, it should satisfy rule "iovstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "iofsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ioill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "ioin"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "ioout_bits"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "csrCtrl_singlestep" is not found in dut, it should satisfy rule "iocsrCtrl_singlestep"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_addr" is not found in dut, it should satisfy rule "iofpRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_hold" is not found in dut, it should satisfy rule "iofpRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_addr" is not found in dut, it should satisfy rule "iofpRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_hold" is not found in dut, it should satisfy rule "iofpRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_addr" is not found in dut, it should satisfy rule "iofpRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_hold" is not found in dut, it should satisfy rule "iofpRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_addr" is not found in dut, it should satisfy rule "iofpRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_hold" is not found in dut, it should satisfy rule "iofpRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_addr" is not found in dut, it should satisfy rule "iofpRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_hold" is not found in dut, it should satisfy rule "iofpRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_addr" is not found in dut, it should satisfy rule "iofpRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_hold" is not found in dut, it should satisfy rule "iofpRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_addr" is not found in dut, it should satisfy rule "iofpRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_hold" is not found in dut, it should satisfy rule "iofpRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_addr" is not found in dut, it should satisfy rule "iofpRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_hold" is not found in dut, it should satisfy rule "iofpRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_addr" is not found in dut, it should satisfy rule "iofpRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_hold" is not found in dut, it should satisfy rule "iofpRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_addr" is not found in dut, it should satisfy rule "iofpRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_hold" is not found in dut, it should satisfy rule "iofpRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_addr" is not found in dut, it should satisfy rule "iofpRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_hold" is not found in dut, it should satisfy rule "iofpRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_addr" is not found in dut, it should satisfy rule "iofpRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_hold" is not found in dut, it should satisfy rule "iofpRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_addr" is not found in dut, it should satisfy rule "iofpRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_hold" is not found in dut, it should satisfy rule "iofpRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_addr" is not found in dut, it should satisfy rule "iofpRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_hold" is not found in dut, it should satisfy rule "iofpRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_addr" is not found in dut, it should satisfy rule "iofpRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_hold" is not found in dut, it should satisfy rule "iofpRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_addr" is not found in dut, it should satisfy rule "iofpRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_hold" is not found in dut, it should satisfy rule "iofpRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_addr" is not found in dut, it should satisfy rule "iofpRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_hold" is not found in dut, it should satisfy rule "iofpRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_addr" is not found in dut, it should satisfy rule "iofpRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_hold" is not found in dut, it should satisfy rule "iofpRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_frm" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_frm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_fsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceGVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceGVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceVVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceVVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_vsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_vsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_special_cboI2F" is not found in dut, it should satisfy rule "iofromCSR_special_cboI2F"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hfence" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hfence"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_hasVsetvl" is not found in dut, it should satisfy rule "iofromRob_commitVType_hasVsetvl"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vma" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vta" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_valid" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_isResumeVType" is not found in dut, it should satisfy rule "iofromRob_isResumeVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkToArchVType" is not found in dut, it should satisfy rule "iofromRob_walkToArchVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vma" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vta" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_valid" is not found in dut, it should satisfy rule "iofromRob_walkVType_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_0" is not found in dut, it should satisfy rule "iofusion_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_1" is not found in dut, it should satisfy rule "iofusion_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_2" is not found in dut, it should satisfy rule "iofusion_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_3" is not found in dut, it should satisfy rule "iofusion_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_4" is not found in dut, it should satisfy rule "iofusion_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_foldpc" is not found in dut, it should satisfy rule "ioin_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_instr" is not found in dut, it should satisfy rule "ioin_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_0_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_trigger" is not found in dut, it should satisfy rule "ioin_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_ready" is not found in dut, it should satisfy rule "ioin_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_valid" is not found in dut, it should satisfy rule "ioin_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_foldpc" is not found in dut, it should satisfy rule "ioin_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_instr" is not found in dut, it should satisfy rule "ioin_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_1_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_trigger" is not found in dut, it should satisfy rule "ioin_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_ready" is not found in dut, it should satisfy rule "ioin_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_valid" is not found in dut, it should satisfy rule "ioin_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_foldpc" is not found in dut, it should satisfy rule "ioin_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_instr" is not found in dut, it should satisfy rule "ioin_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_2_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_trigger" is not found in dut, it should satisfy rule "ioin_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_ready" is not found in dut, it should satisfy rule "ioin_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_valid" is not found in dut, it should satisfy rule "ioin_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_foldpc" is not found in dut, it should satisfy rule "ioin_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_instr" is not found in dut, it should satisfy rule "ioin_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_3_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_trigger" is not found in dut, it should satisfy rule "ioin_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_ready" is not found in dut, it should satisfy rule "ioin_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_valid" is not found in dut, it should satisfy rule "ioin_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_foldpc" is not found in dut, it should satisfy rule "ioin_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_instr" is not found in dut, it should satisfy rule "ioin_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_4_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_trigger" is not found in dut, it should satisfy rule "ioin_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_ready" is not found in dut, it should satisfy rule "ioin_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_valid" is not found in dut, it should satisfy rule "ioin_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_foldpc" is not found in dut, it should satisfy rule "ioin_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_instr" is not found in dut, it should satisfy rule "ioin_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_5_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_trigger" is not found in dut, it should satisfy rule "ioin_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_ready" is not found in dut, it should satisfy rule "ioin_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_valid" is not found in dut, it should satisfy rule "ioin_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_addr" is not found in dut, it should satisfy rule "iointRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_hold" is not found in dut, it should satisfy rule "iointRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_addr" is not found in dut, it should satisfy rule "iointRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_hold" is not found in dut, it should satisfy rule "iointRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_addr" is not found in dut, it should satisfy rule "iointRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_hold" is not found in dut, it should satisfy rule "iointRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_addr" is not found in dut, it should satisfy rule "iointRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_hold" is not found in dut, it should satisfy rule "iointRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_addr" is not found in dut, it should satisfy rule "iointRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_hold" is not found in dut, it should satisfy rule "iointRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_addr" is not found in dut, it should satisfy rule "iointRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_hold" is not found in dut, it should satisfy rule "iointRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_addr" is not found in dut, it should satisfy rule "iointRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_hold" is not found in dut, it should satisfy rule "iointRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_addr" is not found in dut, it should satisfy rule "iointRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_hold" is not found in dut, it should satisfy rule "iointRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_addr" is not found in dut, it should satisfy rule "iointRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_hold" is not found in dut, it should satisfy rule "iointRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_addr" is not found in dut, it should satisfy rule "iointRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_hold" is not found in dut, it should satisfy rule "iointRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_addr" is not found in dut, it should satisfy rule "iointRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_hold" is not found in dut, it should satisfy rule "iointRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_addr" is not found in dut, it should satisfy rule "iointRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_hold" is not found in dut, it should satisfy rule "iointRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_0_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_0_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_commitType" is not found in dut, it should satisfy rule "ioout_0_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_firstUop" is not found in dut, it should satisfy rule "ioout_0_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_0_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_foldpc" is not found in dut, it should satisfy rule "ioout_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpWen" is not found in dut, it should satisfy rule "ioout_0_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_0_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuType" is not found in dut, it should satisfy rule "ioout_0_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_imm" is not found in dut, it should satisfy rule "ioout_0_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_instr" is not found in dut, it should satisfy rule "ioout_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isMove" is not found in dut, it should satisfy rule "ioout_0_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isVset" is not found in dut, it should satisfy rule "ioout_0_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_0_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lastUop" is not found in dut, it should satisfy rule "ioout_0_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ldest" is not found in dut, it should satisfy rule "ioout_0_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_numWB" is not found in dut, it should satisfy rule "ioout_0_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_rfWen" is not found in dut, it should satisfy rule "ioout_0_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_selImm" is not found in dut, it should satisfy rule "ioout_0_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_trigger" is not found in dut, it should satisfy rule "ioout_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_0_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_0_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_0_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vecWen" is not found in dut, it should satisfy rule "ioout_0_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlWen" is not found in dut, it should satisfy rule "ioout_0_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_0_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_waitForward" is not found in dut, it should satisfy rule "ioout_0_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_wfflags" is not found in dut, it should satisfy rule "ioout_0_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_ready" is not found in dut, it should satisfy rule "ioout_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_valid" is not found in dut, it should satisfy rule "ioout_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_1_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_1_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_commitType" is not found in dut, it should satisfy rule "ioout_1_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_firstUop" is not found in dut, it should satisfy rule "ioout_1_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_1_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_foldpc" is not found in dut, it should satisfy rule "ioout_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpWen" is not found in dut, it should satisfy rule "ioout_1_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_1_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuType" is not found in dut, it should satisfy rule "ioout_1_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_imm" is not found in dut, it should satisfy rule "ioout_1_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_instr" is not found in dut, it should satisfy rule "ioout_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isMove" is not found in dut, it should satisfy rule "ioout_1_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isVset" is not found in dut, it should satisfy rule "ioout_1_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_1_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lastUop" is not found in dut, it should satisfy rule "ioout_1_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ldest" is not found in dut, it should satisfy rule "ioout_1_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_numWB" is not found in dut, it should satisfy rule "ioout_1_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_rfWen" is not found in dut, it should satisfy rule "ioout_1_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_selImm" is not found in dut, it should satisfy rule "ioout_1_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_trigger" is not found in dut, it should satisfy rule "ioout_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_1_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_1_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_1_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vecWen" is not found in dut, it should satisfy rule "ioout_1_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlWen" is not found in dut, it should satisfy rule "ioout_1_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_1_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_waitForward" is not found in dut, it should satisfy rule "ioout_1_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_wfflags" is not found in dut, it should satisfy rule "ioout_1_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_ready" is not found in dut, it should satisfy rule "ioout_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_valid" is not found in dut, it should satisfy rule "ioout_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_2_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_2_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_commitType" is not found in dut, it should satisfy rule "ioout_2_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_firstUop" is not found in dut, it should satisfy rule "ioout_2_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_2_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_foldpc" is not found in dut, it should satisfy rule "ioout_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpWen" is not found in dut, it should satisfy rule "ioout_2_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_2_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuType" is not found in dut, it should satisfy rule "ioout_2_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_imm" is not found in dut, it should satisfy rule "ioout_2_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_instr" is not found in dut, it should satisfy rule "ioout_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isMove" is not found in dut, it should satisfy rule "ioout_2_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isVset" is not found in dut, it should satisfy rule "ioout_2_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_2_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lastUop" is not found in dut, it should satisfy rule "ioout_2_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ldest" is not found in dut, it should satisfy rule "ioout_2_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_numWB" is not found in dut, it should satisfy rule "ioout_2_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_rfWen" is not found in dut, it should satisfy rule "ioout_2_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_selImm" is not found in dut, it should satisfy rule "ioout_2_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_trigger" is not found in dut, it should satisfy rule "ioout_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_2_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_2_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_2_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vecWen" is not found in dut, it should satisfy rule "ioout_2_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlWen" is not found in dut, it should satisfy rule "ioout_2_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_2_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_waitForward" is not found in dut, it should satisfy rule "ioout_2_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_wfflags" is not found in dut, it should satisfy rule "ioout_2_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_ready" is not found in dut, it should satisfy rule "ioout_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_valid" is not found in dut, it should satisfy rule "ioout_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_3_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_3_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_commitType" is not found in dut, it should satisfy rule "ioout_3_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_firstUop" is not found in dut, it should satisfy rule "ioout_3_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_3_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_foldpc" is not found in dut, it should satisfy rule "ioout_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpWen" is not found in dut, it should satisfy rule "ioout_3_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_3_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuType" is not found in dut, it should satisfy rule "ioout_3_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_imm" is not found in dut, it should satisfy rule "ioout_3_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_instr" is not found in dut, it should satisfy rule "ioout_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isMove" is not found in dut, it should satisfy rule "ioout_3_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isVset" is not found in dut, it should satisfy rule "ioout_3_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_3_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lastUop" is not found in dut, it should satisfy rule "ioout_3_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ldest" is not found in dut, it should satisfy rule "ioout_3_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_numWB" is not found in dut, it should satisfy rule "ioout_3_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_rfWen" is not found in dut, it should satisfy rule "ioout_3_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_selImm" is not found in dut, it should satisfy rule "ioout_3_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_trigger" is not found in dut, it should satisfy rule "ioout_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_3_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_3_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_3_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vecWen" is not found in dut, it should satisfy rule "ioout_3_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlWen" is not found in dut, it should satisfy rule "ioout_3_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_3_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_waitForward" is not found in dut, it should satisfy rule "ioout_3_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_wfflags" is not found in dut, it should satisfy rule "ioout_3_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_ready" is not found in dut, it should satisfy rule "ioout_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_valid" is not found in dut, it should satisfy rule "ioout_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_4_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_4_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_commitType" is not found in dut, it should satisfy rule "ioout_4_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_firstUop" is not found in dut, it should satisfy rule "ioout_4_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_4_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_foldpc" is not found in dut, it should satisfy rule "ioout_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpWen" is not found in dut, it should satisfy rule "ioout_4_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_4_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuType" is not found in dut, it should satisfy rule "ioout_4_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_imm" is not found in dut, it should satisfy rule "ioout_4_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_instr" is not found in dut, it should satisfy rule "ioout_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isMove" is not found in dut, it should satisfy rule "ioout_4_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isVset" is not found in dut, it should satisfy rule "ioout_4_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_4_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lastUop" is not found in dut, it should satisfy rule "ioout_4_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ldest" is not found in dut, it should satisfy rule "ioout_4_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_numWB" is not found in dut, it should satisfy rule "ioout_4_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_rfWen" is not found in dut, it should satisfy rule "ioout_4_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_selImm" is not found in dut, it should satisfy rule "ioout_4_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_trigger" is not found in dut, it should satisfy rule "ioout_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_4_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_4_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_4_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vecWen" is not found in dut, it should satisfy rule "ioout_4_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlWen" is not found in dut, it should satisfy rule "ioout_4_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_4_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_waitForward" is not found in dut, it should satisfy rule "ioout_4_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_wfflags" is not found in dut, it should satisfy rule "ioout_4_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_ready" is not found in dut, it should satisfy rule "ioout_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_valid" is not found in dut, it should satisfy rule "ioout_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_5_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_5_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_commitType" is not found in dut, it should satisfy rule "ioout_5_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_firstUop" is not found in dut, it should satisfy rule "ioout_5_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_5_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_foldpc" is not found in dut, it should satisfy rule "ioout_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpWen" is not found in dut, it should satisfy rule "ioout_5_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_5_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuType" is not found in dut, it should satisfy rule "ioout_5_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_imm" is not found in dut, it should satisfy rule "ioout_5_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_instr" is not found in dut, it should satisfy rule "ioout_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isMove" is not found in dut, it should satisfy rule "ioout_5_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isVset" is not found in dut, it should satisfy rule "ioout_5_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_5_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lastUop" is not found in dut, it should satisfy rule "ioout_5_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ldest" is not found in dut, it should satisfy rule "ioout_5_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_numWB" is not found in dut, it should satisfy rule "ioout_5_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_rfWen" is not found in dut, it should satisfy rule "ioout_5_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_selImm" is not found in dut, it should satisfy rule "ioout_5_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_trigger" is not found in dut, it should satisfy rule "ioout_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_5_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_5_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_5_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vecWen" is not found in dut, it should satisfy rule "ioout_5_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlWen" is not found in dut, it should satisfy rule "ioout_5_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_5_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_waitForward" is not found in dut, it should satisfy rule "ioout_5_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_wfflags" is not found in dut, it should satisfy rule "ioout_5_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_ready" is not found in dut, it should satisfy rule "ioout_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_valid" is not found in dut, it should satisfy rule "ioout_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_0_value" is not found in dut, it should satisfy rule "ioperf_0_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_1_value" is not found in dut, it should satisfy rule "ioperf_1_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_2_value" is not found in dut, it should satisfy rule "ioperf_2_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_3_value" is not found in dut, it should satisfy rule "ioperf_3_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "redirect" is not found in dut, it should satisfy rule "ioredirect"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqOffset" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_value" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_instr" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_valid" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_addr" is not found in dut, it should satisfy rule "iovecRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_hold" is not found in dut, it should satisfy rule "iovecRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_addr" is not found in dut, it should satisfy rule "iovecRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_hold" is not found in dut, it should satisfy rule "iovecRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_addr" is not found in dut, it should satisfy rule "iovecRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_hold" is not found in dut, it should satisfy rule "iovecRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_addr" is not found in dut, it should satisfy rule "iovecRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_hold" is not found in dut, it should satisfy rule "iovecRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_addr" is not found in dut, it should satisfy rule "iovecRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_hold" is not found in dut, it should satisfy rule "iovecRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_addr" is not found in dut, it should satisfy rule "iovecRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_hold" is not found in dut, it should satisfy rule "iovecRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_addr" is not found in dut, it should satisfy rule "iovecRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_hold" is not found in dut, it should satisfy rule "iovecRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_addr" is not found in dut, it should satisfy rule "iovecRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_hold" is not found in dut, it should satisfy rule "iovecRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_addr" is not found in dut, it should satisfy rule "iovecRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_hold" is not found in dut, it should satisfy rule "iovecRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_addr" is not found in dut, it should satisfy rule "iovecRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_hold" is not found in dut, it should satisfy rule "iovecRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_addr" is not found in dut, it should satisfy rule "iovecRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_hold" is not found in dut, it should satisfy rule "iovecRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_addr" is not found in dut, it should satisfy rule "iovecRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_hold" is not found in dut, it should satisfy rule "iovecRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_addr" is not found in dut, it should satisfy rule "iovecRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_hold" is not found in dut, it should satisfy rule "iovecRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_addr" is not found in dut, it should satisfy rule "iovecRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_hold" is not found in dut, it should satisfy rule "iovecRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_addr" is not found in dut, it should satisfy rule "iovecRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_hold" is not found in dut, it should satisfy rule "iovecRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_addr" is not found in dut, it should satisfy rule "iovecRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_hold" is not found in dut, it should satisfy rule "iovecRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_addr" is not found in dut, it should satisfy rule "iovecRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_hold" is not found in dut, it should satisfy rule "iovecRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_addr" is not found in dut, it should satisfy rule "iovecRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_hold" is not found in dut, it should satisfy rule "iovecRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_illegal" is not found in dut, it should satisfy rule "iovsetvlVType_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vlmul" is not found in dut, it should satisfy rule "iovsetvlVType_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vma" is not found in dut, it should satisfy rule "iovsetvlVType_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vsew" is not found in dut, it should satisfy rule "iovsetvlVType_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vta" is not found in dut, it should satisfy rule "iovsetvlVType_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vstart" is not found in dut, it should satisfy rule "iovstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "iofsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ioill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "ioin"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "ioout_bits"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "iofsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ioill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "ioin"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "ioout_bits"

Call

Teardown

Captured log teardown
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

PASSED test_rvc_expand_16bit_smoke 0:00:01.526691

Test the RVC expand function with 1 compressed instruction

Setup

Captured log setup
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "csrCtrl_singlestep" is not found in dut, it should satisfy rule "iocsrCtrl_singlestep"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_addr" is not found in dut, it should satisfy rule "iofpRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_hold" is not found in dut, it should satisfy rule "iofpRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_addr" is not found in dut, it should satisfy rule "iofpRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_hold" is not found in dut, it should satisfy rule "iofpRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_addr" is not found in dut, it should satisfy rule "iofpRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_hold" is not found in dut, it should satisfy rule "iofpRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_addr" is not found in dut, it should satisfy rule "iofpRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_hold" is not found in dut, it should satisfy rule "iofpRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_addr" is not found in dut, it should satisfy rule "iofpRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_hold" is not found in dut, it should satisfy rule "iofpRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_addr" is not found in dut, it should satisfy rule "iofpRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_hold" is not found in dut, it should satisfy rule "iofpRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_addr" is not found in dut, it should satisfy rule "iofpRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_hold" is not found in dut, it should satisfy rule "iofpRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_addr" is not found in dut, it should satisfy rule "iofpRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_hold" is not found in dut, it should satisfy rule "iofpRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_addr" is not found in dut, it should satisfy rule "iofpRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_hold" is not found in dut, it should satisfy rule "iofpRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_addr" is not found in dut, it should satisfy rule "iofpRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_hold" is not found in dut, it should satisfy rule "iofpRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_addr" is not found in dut, it should satisfy rule "iofpRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_hold" is not found in dut, it should satisfy rule "iofpRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_addr" is not found in dut, it should satisfy rule "iofpRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_hold" is not found in dut, it should satisfy rule "iofpRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_addr" is not found in dut, it should satisfy rule "iofpRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_hold" is not found in dut, it should satisfy rule "iofpRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_addr" is not found in dut, it should satisfy rule "iofpRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_hold" is not found in dut, it should satisfy rule "iofpRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_addr" is not found in dut, it should satisfy rule "iofpRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_hold" is not found in dut, it should satisfy rule "iofpRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_addr" is not found in dut, it should satisfy rule "iofpRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_hold" is not found in dut, it should satisfy rule "iofpRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_addr" is not found in dut, it should satisfy rule "iofpRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_hold" is not found in dut, it should satisfy rule "iofpRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_addr" is not found in dut, it should satisfy rule "iofpRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_hold" is not found in dut, it should satisfy rule "iofpRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_frm" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_frm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_fsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceGVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceGVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceVVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceVVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_vsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_vsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_special_cboI2F" is not found in dut, it should satisfy rule "iofromCSR_special_cboI2F"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hfence" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hfence"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_hasVsetvl" is not found in dut, it should satisfy rule "iofromRob_commitVType_hasVsetvl"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vma" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vta" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_valid" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_isResumeVType" is not found in dut, it should satisfy rule "iofromRob_isResumeVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkToArchVType" is not found in dut, it should satisfy rule "iofromRob_walkToArchVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vma" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vta" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_valid" is not found in dut, it should satisfy rule "iofromRob_walkVType_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_0" is not found in dut, it should satisfy rule "iofusion_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_1" is not found in dut, it should satisfy rule "iofusion_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_2" is not found in dut, it should satisfy rule "iofusion_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_3" is not found in dut, it should satisfy rule "iofusion_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_4" is not found in dut, it should satisfy rule "iofusion_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_foldpc" is not found in dut, it should satisfy rule "ioin_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_instr" is not found in dut, it should satisfy rule "ioin_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_0_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_trigger" is not found in dut, it should satisfy rule "ioin_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_ready" is not found in dut, it should satisfy rule "ioin_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_valid" is not found in dut, it should satisfy rule "ioin_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_foldpc" is not found in dut, it should satisfy rule "ioin_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_instr" is not found in dut, it should satisfy rule "ioin_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_1_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_trigger" is not found in dut, it should satisfy rule "ioin_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_ready" is not found in dut, it should satisfy rule "ioin_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_valid" is not found in dut, it should satisfy rule "ioin_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_foldpc" is not found in dut, it should satisfy rule "ioin_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_instr" is not found in dut, it should satisfy rule "ioin_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_2_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_trigger" is not found in dut, it should satisfy rule "ioin_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_ready" is not found in dut, it should satisfy rule "ioin_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_valid" is not found in dut, it should satisfy rule "ioin_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_foldpc" is not found in dut, it should satisfy rule "ioin_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_instr" is not found in dut, it should satisfy rule "ioin_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_3_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_trigger" is not found in dut, it should satisfy rule "ioin_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_ready" is not found in dut, it should satisfy rule "ioin_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_valid" is not found in dut, it should satisfy rule "ioin_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_foldpc" is not found in dut, it should satisfy rule "ioin_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_instr" is not found in dut, it should satisfy rule "ioin_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_4_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_trigger" is not found in dut, it should satisfy rule "ioin_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_ready" is not found in dut, it should satisfy rule "ioin_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_valid" is not found in dut, it should satisfy rule "ioin_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_foldpc" is not found in dut, it should satisfy rule "ioin_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_instr" is not found in dut, it should satisfy rule "ioin_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_5_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_trigger" is not found in dut, it should satisfy rule "ioin_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_ready" is not found in dut, it should satisfy rule "ioin_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_valid" is not found in dut, it should satisfy rule "ioin_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_addr" is not found in dut, it should satisfy rule "iointRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_hold" is not found in dut, it should satisfy rule "iointRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_addr" is not found in dut, it should satisfy rule "iointRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_hold" is not found in dut, it should satisfy rule "iointRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_addr" is not found in dut, it should satisfy rule "iointRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_hold" is not found in dut, it should satisfy rule "iointRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_addr" is not found in dut, it should satisfy rule "iointRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_hold" is not found in dut, it should satisfy rule "iointRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_addr" is not found in dut, it should satisfy rule "iointRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_hold" is not found in dut, it should satisfy rule "iointRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_addr" is not found in dut, it should satisfy rule "iointRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_hold" is not found in dut, it should satisfy rule "iointRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_addr" is not found in dut, it should satisfy rule "iointRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_hold" is not found in dut, it should satisfy rule "iointRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_addr" is not found in dut, it should satisfy rule "iointRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_hold" is not found in dut, it should satisfy rule "iointRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_addr" is not found in dut, it should satisfy rule "iointRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_hold" is not found in dut, it should satisfy rule "iointRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_addr" is not found in dut, it should satisfy rule "iointRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_hold" is not found in dut, it should satisfy rule "iointRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_addr" is not found in dut, it should satisfy rule "iointRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_hold" is not found in dut, it should satisfy rule "iointRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_addr" is not found in dut, it should satisfy rule "iointRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_hold" is not found in dut, it should satisfy rule "iointRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_0_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_0_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_commitType" is not found in dut, it should satisfy rule "ioout_0_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_firstUop" is not found in dut, it should satisfy rule "ioout_0_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_0_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_foldpc" is not found in dut, it should satisfy rule "ioout_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpWen" is not found in dut, it should satisfy rule "ioout_0_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_0_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuType" is not found in dut, it should satisfy rule "ioout_0_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_imm" is not found in dut, it should satisfy rule "ioout_0_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_instr" is not found in dut, it should satisfy rule "ioout_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isMove" is not found in dut, it should satisfy rule "ioout_0_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isVset" is not found in dut, it should satisfy rule "ioout_0_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_0_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lastUop" is not found in dut, it should satisfy rule "ioout_0_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ldest" is not found in dut, it should satisfy rule "ioout_0_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_numWB" is not found in dut, it should satisfy rule "ioout_0_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_rfWen" is not found in dut, it should satisfy rule "ioout_0_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_selImm" is not found in dut, it should satisfy rule "ioout_0_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_trigger" is not found in dut, it should satisfy rule "ioout_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_0_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_0_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_0_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vecWen" is not found in dut, it should satisfy rule "ioout_0_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlWen" is not found in dut, it should satisfy rule "ioout_0_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_0_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_waitForward" is not found in dut, it should satisfy rule "ioout_0_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_wfflags" is not found in dut, it should satisfy rule "ioout_0_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_ready" is not found in dut, it should satisfy rule "ioout_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_valid" is not found in dut, it should satisfy rule "ioout_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_1_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_1_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_commitType" is not found in dut, it should satisfy rule "ioout_1_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_firstUop" is not found in dut, it should satisfy rule "ioout_1_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_1_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_foldpc" is not found in dut, it should satisfy rule "ioout_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpWen" is not found in dut, it should satisfy rule "ioout_1_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_1_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuType" is not found in dut, it should satisfy rule "ioout_1_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_imm" is not found in dut, it should satisfy rule "ioout_1_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_instr" is not found in dut, it should satisfy rule "ioout_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isMove" is not found in dut, it should satisfy rule "ioout_1_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isVset" is not found in dut, it should satisfy rule "ioout_1_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_1_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lastUop" is not found in dut, it should satisfy rule "ioout_1_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ldest" is not found in dut, it should satisfy rule "ioout_1_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_numWB" is not found in dut, it should satisfy rule "ioout_1_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_rfWen" is not found in dut, it should satisfy rule "ioout_1_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_selImm" is not found in dut, it should satisfy rule "ioout_1_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_trigger" is not found in dut, it should satisfy rule "ioout_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_1_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_1_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_1_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vecWen" is not found in dut, it should satisfy rule "ioout_1_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlWen" is not found in dut, it should satisfy rule "ioout_1_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_1_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_waitForward" is not found in dut, it should satisfy rule "ioout_1_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_wfflags" is not found in dut, it should satisfy rule "ioout_1_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_ready" is not found in dut, it should satisfy rule "ioout_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_valid" is not found in dut, it should satisfy rule "ioout_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_2_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_2_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_commitType" is not found in dut, it should satisfy rule "ioout_2_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_firstUop" is not found in dut, it should satisfy rule "ioout_2_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_2_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_foldpc" is not found in dut, it should satisfy rule "ioout_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpWen" is not found in dut, it should satisfy rule "ioout_2_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_2_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuType" is not found in dut, it should satisfy rule "ioout_2_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_imm" is not found in dut, it should satisfy rule "ioout_2_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_instr" is not found in dut, it should satisfy rule "ioout_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isMove" is not found in dut, it should satisfy rule "ioout_2_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isVset" is not found in dut, it should satisfy rule "ioout_2_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_2_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lastUop" is not found in dut, it should satisfy rule "ioout_2_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ldest" is not found in dut, it should satisfy rule "ioout_2_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_numWB" is not found in dut, it should satisfy rule "ioout_2_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_rfWen" is not found in dut, it should satisfy rule "ioout_2_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_selImm" is not found in dut, it should satisfy rule "ioout_2_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_trigger" is not found in dut, it should satisfy rule "ioout_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_2_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_2_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_2_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vecWen" is not found in dut, it should satisfy rule "ioout_2_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlWen" is not found in dut, it should satisfy rule "ioout_2_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_2_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_waitForward" is not found in dut, it should satisfy rule "ioout_2_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_wfflags" is not found in dut, it should satisfy rule "ioout_2_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_ready" is not found in dut, it should satisfy rule "ioout_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_valid" is not found in dut, it should satisfy rule "ioout_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_3_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_3_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_commitType" is not found in dut, it should satisfy rule "ioout_3_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_firstUop" is not found in dut, it should satisfy rule "ioout_3_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_3_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_foldpc" is not found in dut, it should satisfy rule "ioout_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpWen" is not found in dut, it should satisfy rule "ioout_3_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_3_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuType" is not found in dut, it should satisfy rule "ioout_3_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_imm" is not found in dut, it should satisfy rule "ioout_3_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_instr" is not found in dut, it should satisfy rule "ioout_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isMove" is not found in dut, it should satisfy rule "ioout_3_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isVset" is not found in dut, it should satisfy rule "ioout_3_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_3_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lastUop" is not found in dut, it should satisfy rule "ioout_3_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ldest" is not found in dut, it should satisfy rule "ioout_3_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_numWB" is not found in dut, it should satisfy rule "ioout_3_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_rfWen" is not found in dut, it should satisfy rule "ioout_3_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_selImm" is not found in dut, it should satisfy rule "ioout_3_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_trigger" is not found in dut, it should satisfy rule "ioout_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_3_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_3_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_3_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vecWen" is not found in dut, it should satisfy rule "ioout_3_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlWen" is not found in dut, it should satisfy rule "ioout_3_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_3_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_waitForward" is not found in dut, it should satisfy rule "ioout_3_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_wfflags" is not found in dut, it should satisfy rule "ioout_3_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_ready" is not found in dut, it should satisfy rule "ioout_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_valid" is not found in dut, it should satisfy rule "ioout_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_4_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_4_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_commitType" is not found in dut, it should satisfy rule "ioout_4_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_firstUop" is not found in dut, it should satisfy rule "ioout_4_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_4_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_foldpc" is not found in dut, it should satisfy rule "ioout_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpWen" is not found in dut, it should satisfy rule "ioout_4_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_4_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuType" is not found in dut, it should satisfy rule "ioout_4_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_imm" is not found in dut, it should satisfy rule "ioout_4_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_instr" is not found in dut, it should satisfy rule "ioout_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isMove" is not found in dut, it should satisfy rule "ioout_4_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isVset" is not found in dut, it should satisfy rule "ioout_4_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_4_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lastUop" is not found in dut, it should satisfy rule "ioout_4_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ldest" is not found in dut, it should satisfy rule "ioout_4_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_numWB" is not found in dut, it should satisfy rule "ioout_4_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_rfWen" is not found in dut, it should satisfy rule "ioout_4_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_selImm" is not found in dut, it should satisfy rule "ioout_4_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_trigger" is not found in dut, it should satisfy rule "ioout_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_4_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_4_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_4_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vecWen" is not found in dut, it should satisfy rule "ioout_4_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlWen" is not found in dut, it should satisfy rule "ioout_4_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_4_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_waitForward" is not found in dut, it should satisfy rule "ioout_4_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_wfflags" is not found in dut, it should satisfy rule "ioout_4_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_ready" is not found in dut, it should satisfy rule "ioout_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_valid" is not found in dut, it should satisfy rule "ioout_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_5_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_5_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_commitType" is not found in dut, it should satisfy rule "ioout_5_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_firstUop" is not found in dut, it should satisfy rule "ioout_5_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_5_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_foldpc" is not found in dut, it should satisfy rule "ioout_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpWen" is not found in dut, it should satisfy rule "ioout_5_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_5_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuType" is not found in dut, it should satisfy rule "ioout_5_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_imm" is not found in dut, it should satisfy rule "ioout_5_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_instr" is not found in dut, it should satisfy rule "ioout_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isMove" is not found in dut, it should satisfy rule "ioout_5_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isVset" is not found in dut, it should satisfy rule "ioout_5_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_5_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lastUop" is not found in dut, it should satisfy rule "ioout_5_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ldest" is not found in dut, it should satisfy rule "ioout_5_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_numWB" is not found in dut, it should satisfy rule "ioout_5_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_rfWen" is not found in dut, it should satisfy rule "ioout_5_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_selImm" is not found in dut, it should satisfy rule "ioout_5_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_trigger" is not found in dut, it should satisfy rule "ioout_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_5_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_5_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_5_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vecWen" is not found in dut, it should satisfy rule "ioout_5_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlWen" is not found in dut, it should satisfy rule "ioout_5_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_5_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_waitForward" is not found in dut, it should satisfy rule "ioout_5_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_wfflags" is not found in dut, it should satisfy rule "ioout_5_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_ready" is not found in dut, it should satisfy rule "ioout_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_valid" is not found in dut, it should satisfy rule "ioout_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_0_value" is not found in dut, it should satisfy rule "ioperf_0_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_1_value" is not found in dut, it should satisfy rule "ioperf_1_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_2_value" is not found in dut, it should satisfy rule "ioperf_2_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_3_value" is not found in dut, it should satisfy rule "ioperf_3_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "redirect" is not found in dut, it should satisfy rule "ioredirect"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqOffset" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_value" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_instr" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_valid" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_addr" is not found in dut, it should satisfy rule "iovecRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_hold" is not found in dut, it should satisfy rule "iovecRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_addr" is not found in dut, it should satisfy rule "iovecRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_hold" is not found in dut, it should satisfy rule "iovecRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_addr" is not found in dut, it should satisfy rule "iovecRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_hold" is not found in dut, it should satisfy rule "iovecRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_addr" is not found in dut, it should satisfy rule "iovecRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_hold" is not found in dut, it should satisfy rule "iovecRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_addr" is not found in dut, it should satisfy rule "iovecRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_hold" is not found in dut, it should satisfy rule "iovecRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_addr" is not found in dut, it should satisfy rule "iovecRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_hold" is not found in dut, it should satisfy rule "iovecRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_addr" is not found in dut, it should satisfy rule "iovecRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_hold" is not found in dut, it should satisfy rule "iovecRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_addr" is not found in dut, it should satisfy rule "iovecRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_hold" is not found in dut, it should satisfy rule "iovecRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_addr" is not found in dut, it should satisfy rule "iovecRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_hold" is not found in dut, it should satisfy rule "iovecRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_addr" is not found in dut, it should satisfy rule "iovecRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_hold" is not found in dut, it should satisfy rule "iovecRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_addr" is not found in dut, it should satisfy rule "iovecRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_hold" is not found in dut, it should satisfy rule "iovecRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_addr" is not found in dut, it should satisfy rule "iovecRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_hold" is not found in dut, it should satisfy rule "iovecRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_addr" is not found in dut, it should satisfy rule "iovecRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_hold" is not found in dut, it should satisfy rule "iovecRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_addr" is not found in dut, it should satisfy rule "iovecRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_hold" is not found in dut, it should satisfy rule "iovecRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_addr" is not found in dut, it should satisfy rule "iovecRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_hold" is not found in dut, it should satisfy rule "iovecRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_addr" is not found in dut, it should satisfy rule "iovecRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_hold" is not found in dut, it should satisfy rule "iovecRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_addr" is not found in dut, it should satisfy rule "iovecRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_hold" is not found in dut, it should satisfy rule "iovecRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_addr" is not found in dut, it should satisfy rule "iovecRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_hold" is not found in dut, it should satisfy rule "iovecRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_illegal" is not found in dut, it should satisfy rule "iovsetvlVType_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vlmul" is not found in dut, it should satisfy rule "iovsetvlVType_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vma" is not found in dut, it should satisfy rule "iovsetvlVType_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vsew" is not found in dut, it should satisfy rule "iovsetvlVType_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vta" is not found in dut, it should satisfy rule "iovsetvlVType_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vstart" is not found in dut, it should satisfy rule "iovstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "iofsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ioill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "ioin"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "ioout_bits"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "csrCtrl_singlestep" is not found in dut, it should satisfy rule "iocsrCtrl_singlestep"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_addr" is not found in dut, it should satisfy rule "iofpRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_hold" is not found in dut, it should satisfy rule "iofpRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_addr" is not found in dut, it should satisfy rule "iofpRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_hold" is not found in dut, it should satisfy rule "iofpRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_addr" is not found in dut, it should satisfy rule "iofpRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_hold" is not found in dut, it should satisfy rule "iofpRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_addr" is not found in dut, it should satisfy rule "iofpRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_hold" is not found in dut, it should satisfy rule "iofpRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_addr" is not found in dut, it should satisfy rule "iofpRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_hold" is not found in dut, it should satisfy rule "iofpRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_addr" is not found in dut, it should satisfy rule "iofpRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_hold" is not found in dut, it should satisfy rule "iofpRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_addr" is not found in dut, it should satisfy rule "iofpRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_hold" is not found in dut, it should satisfy rule "iofpRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_addr" is not found in dut, it should satisfy rule "iofpRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_hold" is not found in dut, it should satisfy rule "iofpRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_addr" is not found in dut, it should satisfy rule "iofpRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_hold" is not found in dut, it should satisfy rule "iofpRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_addr" is not found in dut, it should satisfy rule "iofpRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_hold" is not found in dut, it should satisfy rule "iofpRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_addr" is not found in dut, it should satisfy rule "iofpRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_hold" is not found in dut, it should satisfy rule "iofpRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_addr" is not found in dut, it should satisfy rule "iofpRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_hold" is not found in dut, it should satisfy rule "iofpRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_addr" is not found in dut, it should satisfy rule "iofpRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_hold" is not found in dut, it should satisfy rule "iofpRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_addr" is not found in dut, it should satisfy rule "iofpRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_hold" is not found in dut, it should satisfy rule "iofpRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_addr" is not found in dut, it should satisfy rule "iofpRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_hold" is not found in dut, it should satisfy rule "iofpRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_addr" is not found in dut, it should satisfy rule "iofpRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_hold" is not found in dut, it should satisfy rule "iofpRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_addr" is not found in dut, it should satisfy rule "iofpRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_hold" is not found in dut, it should satisfy rule "iofpRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_addr" is not found in dut, it should satisfy rule "iofpRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_hold" is not found in dut, it should satisfy rule "iofpRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_frm" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_frm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_fsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceGVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceGVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceVVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceVVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_vsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_vsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_special_cboI2F" is not found in dut, it should satisfy rule "iofromCSR_special_cboI2F"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hfence" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hfence"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_hasVsetvl" is not found in dut, it should satisfy rule "iofromRob_commitVType_hasVsetvl"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vma" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vta" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_valid" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_isResumeVType" is not found in dut, it should satisfy rule "iofromRob_isResumeVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkToArchVType" is not found in dut, it should satisfy rule "iofromRob_walkToArchVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vma" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vta" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_valid" is not found in dut, it should satisfy rule "iofromRob_walkVType_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_0" is not found in dut, it should satisfy rule "iofusion_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_1" is not found in dut, it should satisfy rule "iofusion_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_2" is not found in dut, it should satisfy rule "iofusion_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_3" is not found in dut, it should satisfy rule "iofusion_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_4" is not found in dut, it should satisfy rule "iofusion_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_foldpc" is not found in dut, it should satisfy rule "ioin_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_instr" is not found in dut, it should satisfy rule "ioin_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_0_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_trigger" is not found in dut, it should satisfy rule "ioin_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_ready" is not found in dut, it should satisfy rule "ioin_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_valid" is not found in dut, it should satisfy rule "ioin_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_foldpc" is not found in dut, it should satisfy rule "ioin_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_instr" is not found in dut, it should satisfy rule "ioin_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_1_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_trigger" is not found in dut, it should satisfy rule "ioin_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_ready" is not found in dut, it should satisfy rule "ioin_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_valid" is not found in dut, it should satisfy rule "ioin_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_foldpc" is not found in dut, it should satisfy rule "ioin_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_instr" is not found in dut, it should satisfy rule "ioin_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_2_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_trigger" is not found in dut, it should satisfy rule "ioin_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_ready" is not found in dut, it should satisfy rule "ioin_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_valid" is not found in dut, it should satisfy rule "ioin_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_foldpc" is not found in dut, it should satisfy rule "ioin_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_instr" is not found in dut, it should satisfy rule "ioin_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_3_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_trigger" is not found in dut, it should satisfy rule "ioin_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_ready" is not found in dut, it should satisfy rule "ioin_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_valid" is not found in dut, it should satisfy rule "ioin_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_foldpc" is not found in dut, it should satisfy rule "ioin_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_instr" is not found in dut, it should satisfy rule "ioin_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_4_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_trigger" is not found in dut, it should satisfy rule "ioin_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_ready" is not found in dut, it should satisfy rule "ioin_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_valid" is not found in dut, it should satisfy rule "ioin_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_foldpc" is not found in dut, it should satisfy rule "ioin_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_instr" is not found in dut, it should satisfy rule "ioin_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_5_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_trigger" is not found in dut, it should satisfy rule "ioin_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_ready" is not found in dut, it should satisfy rule "ioin_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_valid" is not found in dut, it should satisfy rule "ioin_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_addr" is not found in dut, it should satisfy rule "iointRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_hold" is not found in dut, it should satisfy rule "iointRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_addr" is not found in dut, it should satisfy rule "iointRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_hold" is not found in dut, it should satisfy rule "iointRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_addr" is not found in dut, it should satisfy rule "iointRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_hold" is not found in dut, it should satisfy rule "iointRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_addr" is not found in dut, it should satisfy rule "iointRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_hold" is not found in dut, it should satisfy rule "iointRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_addr" is not found in dut, it should satisfy rule "iointRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_hold" is not found in dut, it should satisfy rule "iointRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_addr" is not found in dut, it should satisfy rule "iointRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_hold" is not found in dut, it should satisfy rule "iointRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_addr" is not found in dut, it should satisfy rule "iointRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_hold" is not found in dut, it should satisfy rule "iointRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_addr" is not found in dut, it should satisfy rule "iointRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_hold" is not found in dut, it should satisfy rule "iointRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_addr" is not found in dut, it should satisfy rule "iointRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_hold" is not found in dut, it should satisfy rule "iointRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_addr" is not found in dut, it should satisfy rule "iointRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_hold" is not found in dut, it should satisfy rule "iointRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_addr" is not found in dut, it should satisfy rule "iointRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_hold" is not found in dut, it should satisfy rule "iointRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_addr" is not found in dut, it should satisfy rule "iointRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_hold" is not found in dut, it should satisfy rule "iointRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_0_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_0_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_commitType" is not found in dut, it should satisfy rule "ioout_0_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_firstUop" is not found in dut, it should satisfy rule "ioout_0_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_0_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_foldpc" is not found in dut, it should satisfy rule "ioout_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpWen" is not found in dut, it should satisfy rule "ioout_0_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_0_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuType" is not found in dut, it should satisfy rule "ioout_0_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_imm" is not found in dut, it should satisfy rule "ioout_0_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_instr" is not found in dut, it should satisfy rule "ioout_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isMove" is not found in dut, it should satisfy rule "ioout_0_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isVset" is not found in dut, it should satisfy rule "ioout_0_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_0_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lastUop" is not found in dut, it should satisfy rule "ioout_0_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ldest" is not found in dut, it should satisfy rule "ioout_0_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_numWB" is not found in dut, it should satisfy rule "ioout_0_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_rfWen" is not found in dut, it should satisfy rule "ioout_0_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_selImm" is not found in dut, it should satisfy rule "ioout_0_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_trigger" is not found in dut, it should satisfy rule "ioout_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_0_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_0_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_0_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vecWen" is not found in dut, it should satisfy rule "ioout_0_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlWen" is not found in dut, it should satisfy rule "ioout_0_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_0_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_waitForward" is not found in dut, it should satisfy rule "ioout_0_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_wfflags" is not found in dut, it should satisfy rule "ioout_0_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_ready" is not found in dut, it should satisfy rule "ioout_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_valid" is not found in dut, it should satisfy rule "ioout_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_1_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_1_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_commitType" is not found in dut, it should satisfy rule "ioout_1_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_firstUop" is not found in dut, it should satisfy rule "ioout_1_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_1_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_foldpc" is not found in dut, it should satisfy rule "ioout_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpWen" is not found in dut, it should satisfy rule "ioout_1_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_1_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuType" is not found in dut, it should satisfy rule "ioout_1_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_imm" is not found in dut, it should satisfy rule "ioout_1_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_instr" is not found in dut, it should satisfy rule "ioout_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isMove" is not found in dut, it should satisfy rule "ioout_1_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isVset" is not found in dut, it should satisfy rule "ioout_1_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_1_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lastUop" is not found in dut, it should satisfy rule "ioout_1_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ldest" is not found in dut, it should satisfy rule "ioout_1_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_numWB" is not found in dut, it should satisfy rule "ioout_1_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_rfWen" is not found in dut, it should satisfy rule "ioout_1_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_selImm" is not found in dut, it should satisfy rule "ioout_1_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_trigger" is not found in dut, it should satisfy rule "ioout_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_1_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_1_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_1_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vecWen" is not found in dut, it should satisfy rule "ioout_1_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlWen" is not found in dut, it should satisfy rule "ioout_1_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_1_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_waitForward" is not found in dut, it should satisfy rule "ioout_1_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_wfflags" is not found in dut, it should satisfy rule "ioout_1_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_ready" is not found in dut, it should satisfy rule "ioout_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_valid" is not found in dut, it should satisfy rule "ioout_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_2_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_2_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_commitType" is not found in dut, it should satisfy rule "ioout_2_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_firstUop" is not found in dut, it should satisfy rule "ioout_2_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_2_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_foldpc" is not found in dut, it should satisfy rule "ioout_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpWen" is not found in dut, it should satisfy rule "ioout_2_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_2_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuType" is not found in dut, it should satisfy rule "ioout_2_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_imm" is not found in dut, it should satisfy rule "ioout_2_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_instr" is not found in dut, it should satisfy rule "ioout_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isMove" is not found in dut, it should satisfy rule "ioout_2_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isVset" is not found in dut, it should satisfy rule "ioout_2_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_2_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lastUop" is not found in dut, it should satisfy rule "ioout_2_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ldest" is not found in dut, it should satisfy rule "ioout_2_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_numWB" is not found in dut, it should satisfy rule "ioout_2_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_rfWen" is not found in dut, it should satisfy rule "ioout_2_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_selImm" is not found in dut, it should satisfy rule "ioout_2_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_trigger" is not found in dut, it should satisfy rule "ioout_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_2_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_2_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_2_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vecWen" is not found in dut, it should satisfy rule "ioout_2_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlWen" is not found in dut, it should satisfy rule "ioout_2_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_2_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_waitForward" is not found in dut, it should satisfy rule "ioout_2_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_wfflags" is not found in dut, it should satisfy rule "ioout_2_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_ready" is not found in dut, it should satisfy rule "ioout_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_valid" is not found in dut, it should satisfy rule "ioout_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_3_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_3_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_commitType" is not found in dut, it should satisfy rule "ioout_3_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_firstUop" is not found in dut, it should satisfy rule "ioout_3_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_3_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_foldpc" is not found in dut, it should satisfy rule "ioout_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpWen" is not found in dut, it should satisfy rule "ioout_3_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_3_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuType" is not found in dut, it should satisfy rule "ioout_3_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_imm" is not found in dut, it should satisfy rule "ioout_3_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_instr" is not found in dut, it should satisfy rule "ioout_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isMove" is not found in dut, it should satisfy rule "ioout_3_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isVset" is not found in dut, it should satisfy rule "ioout_3_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_3_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lastUop" is not found in dut, it should satisfy rule "ioout_3_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ldest" is not found in dut, it should satisfy rule "ioout_3_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_numWB" is not found in dut, it should satisfy rule "ioout_3_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_rfWen" is not found in dut, it should satisfy rule "ioout_3_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_selImm" is not found in dut, it should satisfy rule "ioout_3_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_trigger" is not found in dut, it should satisfy rule "ioout_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_3_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_3_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_3_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vecWen" is not found in dut, it should satisfy rule "ioout_3_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlWen" is not found in dut, it should satisfy rule "ioout_3_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_3_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_waitForward" is not found in dut, it should satisfy rule "ioout_3_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_wfflags" is not found in dut, it should satisfy rule "ioout_3_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_ready" is not found in dut, it should satisfy rule "ioout_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_valid" is not found in dut, it should satisfy rule "ioout_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_4_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_4_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_commitType" is not found in dut, it should satisfy rule "ioout_4_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_firstUop" is not found in dut, it should satisfy rule "ioout_4_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_4_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_foldpc" is not found in dut, it should satisfy rule "ioout_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpWen" is not found in dut, it should satisfy rule "ioout_4_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_4_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuType" is not found in dut, it should satisfy rule "ioout_4_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_imm" is not found in dut, it should satisfy rule "ioout_4_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_instr" is not found in dut, it should satisfy rule "ioout_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isMove" is not found in dut, it should satisfy rule "ioout_4_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isVset" is not found in dut, it should satisfy rule "ioout_4_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_4_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lastUop" is not found in dut, it should satisfy rule "ioout_4_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ldest" is not found in dut, it should satisfy rule "ioout_4_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_numWB" is not found in dut, it should satisfy rule "ioout_4_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_rfWen" is not found in dut, it should satisfy rule "ioout_4_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_selImm" is not found in dut, it should satisfy rule "ioout_4_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_trigger" is not found in dut, it should satisfy rule "ioout_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_4_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_4_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_4_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vecWen" is not found in dut, it should satisfy rule "ioout_4_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlWen" is not found in dut, it should satisfy rule "ioout_4_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_4_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_waitForward" is not found in dut, it should satisfy rule "ioout_4_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_wfflags" is not found in dut, it should satisfy rule "ioout_4_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_ready" is not found in dut, it should satisfy rule "ioout_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_valid" is not found in dut, it should satisfy rule "ioout_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_5_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_5_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_commitType" is not found in dut, it should satisfy rule "ioout_5_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_firstUop" is not found in dut, it should satisfy rule "ioout_5_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_5_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_foldpc" is not found in dut, it should satisfy rule "ioout_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpWen" is not found in dut, it should satisfy rule "ioout_5_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_5_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuType" is not found in dut, it should satisfy rule "ioout_5_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_imm" is not found in dut, it should satisfy rule "ioout_5_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_instr" is not found in dut, it should satisfy rule "ioout_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isMove" is not found in dut, it should satisfy rule "ioout_5_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isVset" is not found in dut, it should satisfy rule "ioout_5_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_5_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lastUop" is not found in dut, it should satisfy rule "ioout_5_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ldest" is not found in dut, it should satisfy rule "ioout_5_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_numWB" is not found in dut, it should satisfy rule "ioout_5_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_rfWen" is not found in dut, it should satisfy rule "ioout_5_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_selImm" is not found in dut, it should satisfy rule "ioout_5_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_trigger" is not found in dut, it should satisfy rule "ioout_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_5_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_5_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_5_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vecWen" is not found in dut, it should satisfy rule "ioout_5_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlWen" is not found in dut, it should satisfy rule "ioout_5_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_5_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_waitForward" is not found in dut, it should satisfy rule "ioout_5_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_wfflags" is not found in dut, it should satisfy rule "ioout_5_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_ready" is not found in dut, it should satisfy rule "ioout_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_valid" is not found in dut, it should satisfy rule "ioout_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_0_value" is not found in dut, it should satisfy rule "ioperf_0_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_1_value" is not found in dut, it should satisfy rule "ioperf_1_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_2_value" is not found in dut, it should satisfy rule "ioperf_2_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_3_value" is not found in dut, it should satisfy rule "ioperf_3_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "redirect" is not found in dut, it should satisfy rule "ioredirect"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqOffset" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_value" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_instr" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_valid" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_addr" is not found in dut, it should satisfy rule "iovecRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_hold" is not found in dut, it should satisfy rule "iovecRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_addr" is not found in dut, it should satisfy rule "iovecRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_hold" is not found in dut, it should satisfy rule "iovecRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_addr" is not found in dut, it should satisfy rule "iovecRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_hold" is not found in dut, it should satisfy rule "iovecRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_addr" is not found in dut, it should satisfy rule "iovecRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_hold" is not found in dut, it should satisfy rule "iovecRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_addr" is not found in dut, it should satisfy rule "iovecRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_hold" is not found in dut, it should satisfy rule "iovecRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_addr" is not found in dut, it should satisfy rule "iovecRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_hold" is not found in dut, it should satisfy rule "iovecRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_addr" is not found in dut, it should satisfy rule "iovecRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_hold" is not found in dut, it should satisfy rule "iovecRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_addr" is not found in dut, it should satisfy rule "iovecRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_hold" is not found in dut, it should satisfy rule "iovecRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_addr" is not found in dut, it should satisfy rule "iovecRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_hold" is not found in dut, it should satisfy rule "iovecRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_addr" is not found in dut, it should satisfy rule "iovecRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_hold" is not found in dut, it should satisfy rule "iovecRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_addr" is not found in dut, it should satisfy rule "iovecRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_hold" is not found in dut, it should satisfy rule "iovecRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_addr" is not found in dut, it should satisfy rule "iovecRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_hold" is not found in dut, it should satisfy rule "iovecRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_addr" is not found in dut, it should satisfy rule "iovecRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_hold" is not found in dut, it should satisfy rule "iovecRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_addr" is not found in dut, it should satisfy rule "iovecRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_hold" is not found in dut, it should satisfy rule "iovecRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_addr" is not found in dut, it should satisfy rule "iovecRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_hold" is not found in dut, it should satisfy rule "iovecRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_addr" is not found in dut, it should satisfy rule "iovecRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_hold" is not found in dut, it should satisfy rule "iovecRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_addr" is not found in dut, it should satisfy rule "iovecRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_hold" is not found in dut, it should satisfy rule "iovecRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_addr" is not found in dut, it should satisfy rule "iovecRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_hold" is not found in dut, it should satisfy rule "iovecRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_illegal" is not found in dut, it should satisfy rule "iovsetvlVType_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vlmul" is not found in dut, it should satisfy rule "iovsetvlVType_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vma" is not found in dut, it should satisfy rule "iovsetvlVType_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vsew" is not found in dut, it should satisfy rule "iovsetvlVType_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vta" is not found in dut, it should satisfy rule "iovsetvlVType_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vstart" is not found in dut, it should satisfy rule "iovstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "iofsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ioill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "ioin"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "ioout_bits"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "csrCtrl_singlestep" is not found in dut, it should satisfy rule "iocsrCtrl_singlestep"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_addr" is not found in dut, it should satisfy rule "iofpRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_hold" is not found in dut, it should satisfy rule "iofpRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_addr" is not found in dut, it should satisfy rule "iofpRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_hold" is not found in dut, it should satisfy rule "iofpRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_addr" is not found in dut, it should satisfy rule "iofpRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_hold" is not found in dut, it should satisfy rule "iofpRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_addr" is not found in dut, it should satisfy rule "iofpRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_hold" is not found in dut, it should satisfy rule "iofpRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_addr" is not found in dut, it should satisfy rule "iofpRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_hold" is not found in dut, it should satisfy rule "iofpRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_addr" is not found in dut, it should satisfy rule "iofpRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_hold" is not found in dut, it should satisfy rule "iofpRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_addr" is not found in dut, it should satisfy rule "iofpRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_hold" is not found in dut, it should satisfy rule "iofpRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_addr" is not found in dut, it should satisfy rule "iofpRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_hold" is not found in dut, it should satisfy rule "iofpRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_addr" is not found in dut, it should satisfy rule "iofpRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_hold" is not found in dut, it should satisfy rule "iofpRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_addr" is not found in dut, it should satisfy rule "iofpRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_hold" is not found in dut, it should satisfy rule "iofpRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_addr" is not found in dut, it should satisfy rule "iofpRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_hold" is not found in dut, it should satisfy rule "iofpRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_addr" is not found in dut, it should satisfy rule "iofpRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_hold" is not found in dut, it should satisfy rule "iofpRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_addr" is not found in dut, it should satisfy rule "iofpRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_hold" is not found in dut, it should satisfy rule "iofpRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_addr" is not found in dut, it should satisfy rule "iofpRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_hold" is not found in dut, it should satisfy rule "iofpRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_addr" is not found in dut, it should satisfy rule "iofpRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_hold" is not found in dut, it should satisfy rule "iofpRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_addr" is not found in dut, it should satisfy rule "iofpRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_hold" is not found in dut, it should satisfy rule "iofpRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_addr" is not found in dut, it should satisfy rule "iofpRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_hold" is not found in dut, it should satisfy rule "iofpRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_addr" is not found in dut, it should satisfy rule "iofpRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_hold" is not found in dut, it should satisfy rule "iofpRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_frm" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_frm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_fsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceGVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceGVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceVVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceVVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_vsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_vsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_special_cboI2F" is not found in dut, it should satisfy rule "iofromCSR_special_cboI2F"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hfence" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hfence"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_hasVsetvl" is not found in dut, it should satisfy rule "iofromRob_commitVType_hasVsetvl"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vma" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vta" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_valid" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_isResumeVType" is not found in dut, it should satisfy rule "iofromRob_isResumeVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkToArchVType" is not found in dut, it should satisfy rule "iofromRob_walkToArchVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vma" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vta" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_valid" is not found in dut, it should satisfy rule "iofromRob_walkVType_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_0" is not found in dut, it should satisfy rule "iofusion_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_1" is not found in dut, it should satisfy rule "iofusion_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_2" is not found in dut, it should satisfy rule "iofusion_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_3" is not found in dut, it should satisfy rule "iofusion_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_4" is not found in dut, it should satisfy rule "iofusion_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_foldpc" is not found in dut, it should satisfy rule "ioin_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_instr" is not found in dut, it should satisfy rule "ioin_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_0_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_trigger" is not found in dut, it should satisfy rule "ioin_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_ready" is not found in dut, it should satisfy rule "ioin_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_valid" is not found in dut, it should satisfy rule "ioin_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_foldpc" is not found in dut, it should satisfy rule "ioin_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_instr" is not found in dut, it should satisfy rule "ioin_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_1_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_trigger" is not found in dut, it should satisfy rule "ioin_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_ready" is not found in dut, it should satisfy rule "ioin_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_valid" is not found in dut, it should satisfy rule "ioin_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_foldpc" is not found in dut, it should satisfy rule "ioin_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_instr" is not found in dut, it should satisfy rule "ioin_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_2_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_trigger" is not found in dut, it should satisfy rule "ioin_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_ready" is not found in dut, it should satisfy rule "ioin_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_valid" is not found in dut, it should satisfy rule "ioin_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_foldpc" is not found in dut, it should satisfy rule "ioin_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_instr" is not found in dut, it should satisfy rule "ioin_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_3_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_trigger" is not found in dut, it should satisfy rule "ioin_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_ready" is not found in dut, it should satisfy rule "ioin_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_valid" is not found in dut, it should satisfy rule "ioin_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_foldpc" is not found in dut, it should satisfy rule "ioin_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_instr" is not found in dut, it should satisfy rule "ioin_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_4_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_trigger" is not found in dut, it should satisfy rule "ioin_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_ready" is not found in dut, it should satisfy rule "ioin_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_valid" is not found in dut, it should satisfy rule "ioin_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_foldpc" is not found in dut, it should satisfy rule "ioin_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_instr" is not found in dut, it should satisfy rule "ioin_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_5_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_trigger" is not found in dut, it should satisfy rule "ioin_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_ready" is not found in dut, it should satisfy rule "ioin_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_valid" is not found in dut, it should satisfy rule "ioin_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_addr" is not found in dut, it should satisfy rule "iointRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_hold" is not found in dut, it should satisfy rule "iointRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_addr" is not found in dut, it should satisfy rule "iointRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_hold" is not found in dut, it should satisfy rule "iointRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_addr" is not found in dut, it should satisfy rule "iointRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_hold" is not found in dut, it should satisfy rule "iointRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_addr" is not found in dut, it should satisfy rule "iointRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_hold" is not found in dut, it should satisfy rule "iointRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_addr" is not found in dut, it should satisfy rule "iointRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_hold" is not found in dut, it should satisfy rule "iointRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_addr" is not found in dut, it should satisfy rule "iointRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_hold" is not found in dut, it should satisfy rule "iointRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_addr" is not found in dut, it should satisfy rule "iointRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_hold" is not found in dut, it should satisfy rule "iointRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_addr" is not found in dut, it should satisfy rule "iointRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_hold" is not found in dut, it should satisfy rule "iointRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_addr" is not found in dut, it should satisfy rule "iointRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_hold" is not found in dut, it should satisfy rule "iointRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_addr" is not found in dut, it should satisfy rule "iointRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_hold" is not found in dut, it should satisfy rule "iointRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_addr" is not found in dut, it should satisfy rule "iointRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_hold" is not found in dut, it should satisfy rule "iointRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_addr" is not found in dut, it should satisfy rule "iointRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_hold" is not found in dut, it should satisfy rule "iointRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_0_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_0_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_commitType" is not found in dut, it should satisfy rule "ioout_0_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_firstUop" is not found in dut, it should satisfy rule "ioout_0_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_0_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_foldpc" is not found in dut, it should satisfy rule "ioout_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpWen" is not found in dut, it should satisfy rule "ioout_0_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_0_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuType" is not found in dut, it should satisfy rule "ioout_0_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_imm" is not found in dut, it should satisfy rule "ioout_0_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_instr" is not found in dut, it should satisfy rule "ioout_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isMove" is not found in dut, it should satisfy rule "ioout_0_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isVset" is not found in dut, it should satisfy rule "ioout_0_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_0_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lastUop" is not found in dut, it should satisfy rule "ioout_0_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ldest" is not found in dut, it should satisfy rule "ioout_0_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_numWB" is not found in dut, it should satisfy rule "ioout_0_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_rfWen" is not found in dut, it should satisfy rule "ioout_0_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_selImm" is not found in dut, it should satisfy rule "ioout_0_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_trigger" is not found in dut, it should satisfy rule "ioout_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_0_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_0_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_0_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vecWen" is not found in dut, it should satisfy rule "ioout_0_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlWen" is not found in dut, it should satisfy rule "ioout_0_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_0_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_waitForward" is not found in dut, it should satisfy rule "ioout_0_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_wfflags" is not found in dut, it should satisfy rule "ioout_0_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_ready" is not found in dut, it should satisfy rule "ioout_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_valid" is not found in dut, it should satisfy rule "ioout_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_1_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_1_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_commitType" is not found in dut, it should satisfy rule "ioout_1_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_firstUop" is not found in dut, it should satisfy rule "ioout_1_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_1_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_foldpc" is not found in dut, it should satisfy rule "ioout_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpWen" is not found in dut, it should satisfy rule "ioout_1_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_1_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuType" is not found in dut, it should satisfy rule "ioout_1_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_imm" is not found in dut, it should satisfy rule "ioout_1_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_instr" is not found in dut, it should satisfy rule "ioout_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isMove" is not found in dut, it should satisfy rule "ioout_1_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isVset" is not found in dut, it should satisfy rule "ioout_1_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_1_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lastUop" is not found in dut, it should satisfy rule "ioout_1_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ldest" is not found in dut, it should satisfy rule "ioout_1_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_numWB" is not found in dut, it should satisfy rule "ioout_1_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_rfWen" is not found in dut, it should satisfy rule "ioout_1_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_selImm" is not found in dut, it should satisfy rule "ioout_1_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_trigger" is not found in dut, it should satisfy rule "ioout_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_1_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_1_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_1_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vecWen" is not found in dut, it should satisfy rule "ioout_1_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlWen" is not found in dut, it should satisfy rule "ioout_1_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_1_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_waitForward" is not found in dut, it should satisfy rule "ioout_1_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_wfflags" is not found in dut, it should satisfy rule "ioout_1_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_ready" is not found in dut, it should satisfy rule "ioout_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_valid" is not found in dut, it should satisfy rule "ioout_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_2_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_2_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_commitType" is not found in dut, it should satisfy rule "ioout_2_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_firstUop" is not found in dut, it should satisfy rule "ioout_2_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_2_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_foldpc" is not found in dut, it should satisfy rule "ioout_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpWen" is not found in dut, it should satisfy rule "ioout_2_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_2_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuType" is not found in dut, it should satisfy rule "ioout_2_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_imm" is not found in dut, it should satisfy rule "ioout_2_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_instr" is not found in dut, it should satisfy rule "ioout_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isMove" is not found in dut, it should satisfy rule "ioout_2_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isVset" is not found in dut, it should satisfy rule "ioout_2_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_2_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lastUop" is not found in dut, it should satisfy rule "ioout_2_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ldest" is not found in dut, it should satisfy rule "ioout_2_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_numWB" is not found in dut, it should satisfy rule "ioout_2_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_rfWen" is not found in dut, it should satisfy rule "ioout_2_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_selImm" is not found in dut, it should satisfy rule "ioout_2_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_trigger" is not found in dut, it should satisfy rule "ioout_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_2_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_2_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_2_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vecWen" is not found in dut, it should satisfy rule "ioout_2_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlWen" is not found in dut, it should satisfy rule "ioout_2_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_2_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_waitForward" is not found in dut, it should satisfy rule "ioout_2_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_wfflags" is not found in dut, it should satisfy rule "ioout_2_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_ready" is not found in dut, it should satisfy rule "ioout_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_valid" is not found in dut, it should satisfy rule "ioout_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_3_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_3_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_commitType" is not found in dut, it should satisfy rule "ioout_3_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_firstUop" is not found in dut, it should satisfy rule "ioout_3_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_3_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_foldpc" is not found in dut, it should satisfy rule "ioout_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpWen" is not found in dut, it should satisfy rule "ioout_3_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_3_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuType" is not found in dut, it should satisfy rule "ioout_3_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_imm" is not found in dut, it should satisfy rule "ioout_3_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_instr" is not found in dut, it should satisfy rule "ioout_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isMove" is not found in dut, it should satisfy rule "ioout_3_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isVset" is not found in dut, it should satisfy rule "ioout_3_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_3_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lastUop" is not found in dut, it should satisfy rule "ioout_3_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ldest" is not found in dut, it should satisfy rule "ioout_3_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_numWB" is not found in dut, it should satisfy rule "ioout_3_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_rfWen" is not found in dut, it should satisfy rule "ioout_3_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_selImm" is not found in dut, it should satisfy rule "ioout_3_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_trigger" is not found in dut, it should satisfy rule "ioout_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_3_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_3_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_3_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vecWen" is not found in dut, it should satisfy rule "ioout_3_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlWen" is not found in dut, it should satisfy rule "ioout_3_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_3_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_waitForward" is not found in dut, it should satisfy rule "ioout_3_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_wfflags" is not found in dut, it should satisfy rule "ioout_3_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_ready" is not found in dut, it should satisfy rule "ioout_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_valid" is not found in dut, it should satisfy rule "ioout_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_4_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_4_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_commitType" is not found in dut, it should satisfy rule "ioout_4_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_firstUop" is not found in dut, it should satisfy rule "ioout_4_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_4_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_foldpc" is not found in dut, it should satisfy rule "ioout_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpWen" is not found in dut, it should satisfy rule "ioout_4_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_4_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuType" is not found in dut, it should satisfy rule "ioout_4_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_imm" is not found in dut, it should satisfy rule "ioout_4_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_instr" is not found in dut, it should satisfy rule "ioout_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isMove" is not found in dut, it should satisfy rule "ioout_4_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isVset" is not found in dut, it should satisfy rule "ioout_4_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_4_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lastUop" is not found in dut, it should satisfy rule "ioout_4_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ldest" is not found in dut, it should satisfy rule "ioout_4_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_numWB" is not found in dut, it should satisfy rule "ioout_4_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_rfWen" is not found in dut, it should satisfy rule "ioout_4_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_selImm" is not found in dut, it should satisfy rule "ioout_4_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_trigger" is not found in dut, it should satisfy rule "ioout_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_4_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_4_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_4_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vecWen" is not found in dut, it should satisfy rule "ioout_4_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlWen" is not found in dut, it should satisfy rule "ioout_4_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_4_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_waitForward" is not found in dut, it should satisfy rule "ioout_4_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_wfflags" is not found in dut, it should satisfy rule "ioout_4_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_ready" is not found in dut, it should satisfy rule "ioout_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_valid" is not found in dut, it should satisfy rule "ioout_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_5_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_5_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_commitType" is not found in dut, it should satisfy rule "ioout_5_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_firstUop" is not found in dut, it should satisfy rule "ioout_5_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_5_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_foldpc" is not found in dut, it should satisfy rule "ioout_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpWen" is not found in dut, it should satisfy rule "ioout_5_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_5_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuType" is not found in dut, it should satisfy rule "ioout_5_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_imm" is not found in dut, it should satisfy rule "ioout_5_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_instr" is not found in dut, it should satisfy rule "ioout_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isMove" is not found in dut, it should satisfy rule "ioout_5_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isVset" is not found in dut, it should satisfy rule "ioout_5_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_5_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lastUop" is not found in dut, it should satisfy rule "ioout_5_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ldest" is not found in dut, it should satisfy rule "ioout_5_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_numWB" is not found in dut, it should satisfy rule "ioout_5_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_rfWen" is not found in dut, it should satisfy rule "ioout_5_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_selImm" is not found in dut, it should satisfy rule "ioout_5_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_trigger" is not found in dut, it should satisfy rule "ioout_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_5_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_5_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_5_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vecWen" is not found in dut, it should satisfy rule "ioout_5_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlWen" is not found in dut, it should satisfy rule "ioout_5_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_5_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_waitForward" is not found in dut, it should satisfy rule "ioout_5_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_wfflags" is not found in dut, it should satisfy rule "ioout_5_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_ready" is not found in dut, it should satisfy rule "ioout_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_valid" is not found in dut, it should satisfy rule "ioout_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_0_value" is not found in dut, it should satisfy rule "ioperf_0_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_1_value" is not found in dut, it should satisfy rule "ioperf_1_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_2_value" is not found in dut, it should satisfy rule "ioperf_2_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_3_value" is not found in dut, it should satisfy rule "ioperf_3_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "redirect" is not found in dut, it should satisfy rule "ioredirect"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqOffset" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_value" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_instr" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_valid" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_addr" is not found in dut, it should satisfy rule "iovecRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_hold" is not found in dut, it should satisfy rule "iovecRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_addr" is not found in dut, it should satisfy rule "iovecRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_hold" is not found in dut, it should satisfy rule "iovecRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_addr" is not found in dut, it should satisfy rule "iovecRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_hold" is not found in dut, it should satisfy rule "iovecRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_addr" is not found in dut, it should satisfy rule "iovecRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_hold" is not found in dut, it should satisfy rule "iovecRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_addr" is not found in dut, it should satisfy rule "iovecRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_hold" is not found in dut, it should satisfy rule "iovecRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_addr" is not found in dut, it should satisfy rule "iovecRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_hold" is not found in dut, it should satisfy rule "iovecRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_addr" is not found in dut, it should satisfy rule "iovecRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_hold" is not found in dut, it should satisfy rule "iovecRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_addr" is not found in dut, it should satisfy rule "iovecRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_hold" is not found in dut, it should satisfy rule "iovecRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_addr" is not found in dut, it should satisfy rule "iovecRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_hold" is not found in dut, it should satisfy rule "iovecRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_addr" is not found in dut, it should satisfy rule "iovecRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_hold" is not found in dut, it should satisfy rule "iovecRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_addr" is not found in dut, it should satisfy rule "iovecRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_hold" is not found in dut, it should satisfy rule "iovecRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_addr" is not found in dut, it should satisfy rule "iovecRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_hold" is not found in dut, it should satisfy rule "iovecRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_addr" is not found in dut, it should satisfy rule "iovecRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_hold" is not found in dut, it should satisfy rule "iovecRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_addr" is not found in dut, it should satisfy rule "iovecRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_hold" is not found in dut, it should satisfy rule "iovecRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_addr" is not found in dut, it should satisfy rule "iovecRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_hold" is not found in dut, it should satisfy rule "iovecRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_addr" is not found in dut, it should satisfy rule "iovecRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_hold" is not found in dut, it should satisfy rule "iovecRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_addr" is not found in dut, it should satisfy rule "iovecRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_hold" is not found in dut, it should satisfy rule "iovecRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_addr" is not found in dut, it should satisfy rule "iovecRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_hold" is not found in dut, it should satisfy rule "iovecRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_illegal" is not found in dut, it should satisfy rule "iovsetvlVType_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vlmul" is not found in dut, it should satisfy rule "iovsetvlVType_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vma" is not found in dut, it should satisfy rule "iovsetvlVType_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vsew" is not found in dut, it should satisfy rule "iovsetvlVType_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vta" is not found in dut, it should satisfy rule "iovsetvlVType_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vstart" is not found in dut, it should satisfy rule "iovstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "iofsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ioill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "ioin"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "ioout_bits"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "iofsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ioill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "ioin"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "ioout_bits"

Call

Teardown

Captured log teardown
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

PASSED test_rvc_expand_16bit_full[0-6553] 0:00:10.708667

Test the RVC expand function with a full compressed instruction set

Description:

Perform an expand check on 16-bit compressed instructions within the range from 'start' to 'end'.

Setup

Captured log setup
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "csrCtrl_singlestep" is not found in dut, it should satisfy rule "iocsrCtrl_singlestep"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_addr" is not found in dut, it should satisfy rule "iofpRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_hold" is not found in dut, it should satisfy rule "iofpRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_addr" is not found in dut, it should satisfy rule "iofpRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_hold" is not found in dut, it should satisfy rule "iofpRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_addr" is not found in dut, it should satisfy rule "iofpRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_hold" is not found in dut, it should satisfy rule "iofpRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_addr" is not found in dut, it should satisfy rule "iofpRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_hold" is not found in dut, it should satisfy rule "iofpRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_addr" is not found in dut, it should satisfy rule "iofpRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_hold" is not found in dut, it should satisfy rule "iofpRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_addr" is not found in dut, it should satisfy rule "iofpRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_hold" is not found in dut, it should satisfy rule "iofpRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_addr" is not found in dut, it should satisfy rule "iofpRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_hold" is not found in dut, it should satisfy rule "iofpRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_addr" is not found in dut, it should satisfy rule "iofpRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_hold" is not found in dut, it should satisfy rule "iofpRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_addr" is not found in dut, it should satisfy rule "iofpRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_hold" is not found in dut, it should satisfy rule "iofpRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_addr" is not found in dut, it should satisfy rule "iofpRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_hold" is not found in dut, it should satisfy rule "iofpRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_addr" is not found in dut, it should satisfy rule "iofpRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_hold" is not found in dut, it should satisfy rule "iofpRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_addr" is not found in dut, it should satisfy rule "iofpRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_hold" is not found in dut, it should satisfy rule "iofpRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_addr" is not found in dut, it should satisfy rule "iofpRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_hold" is not found in dut, it should satisfy rule "iofpRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_addr" is not found in dut, it should satisfy rule "iofpRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_hold" is not found in dut, it should satisfy rule "iofpRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_addr" is not found in dut, it should satisfy rule "iofpRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_hold" is not found in dut, it should satisfy rule "iofpRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_addr" is not found in dut, it should satisfy rule "iofpRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_hold" is not found in dut, it should satisfy rule "iofpRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_addr" is not found in dut, it should satisfy rule "iofpRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_hold" is not found in dut, it should satisfy rule "iofpRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_addr" is not found in dut, it should satisfy rule "iofpRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_hold" is not found in dut, it should satisfy rule "iofpRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_frm" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_frm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_fsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceGVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceGVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceVVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceVVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_vsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_vsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_special_cboI2F" is not found in dut, it should satisfy rule "iofromCSR_special_cboI2F"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hfence" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hfence"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_hasVsetvl" is not found in dut, it should satisfy rule "iofromRob_commitVType_hasVsetvl"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vma" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vta" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_valid" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_isResumeVType" is not found in dut, it should satisfy rule "iofromRob_isResumeVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkToArchVType" is not found in dut, it should satisfy rule "iofromRob_walkToArchVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vma" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vta" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_valid" is not found in dut, it should satisfy rule "iofromRob_walkVType_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_0" is not found in dut, it should satisfy rule "iofusion_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_1" is not found in dut, it should satisfy rule "iofusion_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_2" is not found in dut, it should satisfy rule "iofusion_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_3" is not found in dut, it should satisfy rule "iofusion_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_4" is not found in dut, it should satisfy rule "iofusion_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_foldpc" is not found in dut, it should satisfy rule "ioin_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_instr" is not found in dut, it should satisfy rule "ioin_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_0_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_trigger" is not found in dut, it should satisfy rule "ioin_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_ready" is not found in dut, it should satisfy rule "ioin_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_valid" is not found in dut, it should satisfy rule "ioin_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_foldpc" is not found in dut, it should satisfy rule "ioin_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_instr" is not found in dut, it should satisfy rule "ioin_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_1_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_trigger" is not found in dut, it should satisfy rule "ioin_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_ready" is not found in dut, it should satisfy rule "ioin_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_valid" is not found in dut, it should satisfy rule "ioin_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_foldpc" is not found in dut, it should satisfy rule "ioin_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_instr" is not found in dut, it should satisfy rule "ioin_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_2_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_trigger" is not found in dut, it should satisfy rule "ioin_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_ready" is not found in dut, it should satisfy rule "ioin_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_valid" is not found in dut, it should satisfy rule "ioin_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_foldpc" is not found in dut, it should satisfy rule "ioin_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_instr" is not found in dut, it should satisfy rule "ioin_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_3_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_trigger" is not found in dut, it should satisfy rule "ioin_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_ready" is not found in dut, it should satisfy rule "ioin_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_valid" is not found in dut, it should satisfy rule "ioin_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_foldpc" is not found in dut, it should satisfy rule "ioin_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_instr" is not found in dut, it should satisfy rule "ioin_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_4_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_trigger" is not found in dut, it should satisfy rule "ioin_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_ready" is not found in dut, it should satisfy rule "ioin_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_valid" is not found in dut, it should satisfy rule "ioin_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_foldpc" is not found in dut, it should satisfy rule "ioin_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_instr" is not found in dut, it should satisfy rule "ioin_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_5_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_trigger" is not found in dut, it should satisfy rule "ioin_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_ready" is not found in dut, it should satisfy rule "ioin_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_valid" is not found in dut, it should satisfy rule "ioin_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_addr" is not found in dut, it should satisfy rule "iointRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_hold" is not found in dut, it should satisfy rule "iointRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_addr" is not found in dut, it should satisfy rule "iointRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_hold" is not found in dut, it should satisfy rule "iointRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_addr" is not found in dut, it should satisfy rule "iointRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_hold" is not found in dut, it should satisfy rule "iointRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_addr" is not found in dut, it should satisfy rule "iointRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_hold" is not found in dut, it should satisfy rule "iointRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_addr" is not found in dut, it should satisfy rule "iointRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_hold" is not found in dut, it should satisfy rule "iointRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_addr" is not found in dut, it should satisfy rule "iointRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_hold" is not found in dut, it should satisfy rule "iointRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_addr" is not found in dut, it should satisfy rule "iointRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_hold" is not found in dut, it should satisfy rule "iointRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_addr" is not found in dut, it should satisfy rule "iointRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_hold" is not found in dut, it should satisfy rule "iointRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_addr" is not found in dut, it should satisfy rule "iointRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_hold" is not found in dut, it should satisfy rule "iointRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_addr" is not found in dut, it should satisfy rule "iointRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_hold" is not found in dut, it should satisfy rule "iointRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_addr" is not found in dut, it should satisfy rule "iointRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_hold" is not found in dut, it should satisfy rule "iointRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_addr" is not found in dut, it should satisfy rule "iointRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_hold" is not found in dut, it should satisfy rule "iointRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_0_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_0_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_commitType" is not found in dut, it should satisfy rule "ioout_0_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_firstUop" is not found in dut, it should satisfy rule "ioout_0_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_0_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_foldpc" is not found in dut, it should satisfy rule "ioout_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpWen" is not found in dut, it should satisfy rule "ioout_0_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_0_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuType" is not found in dut, it should satisfy rule "ioout_0_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_imm" is not found in dut, it should satisfy rule "ioout_0_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_instr" is not found in dut, it should satisfy rule "ioout_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isMove" is not found in dut, it should satisfy rule "ioout_0_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isVset" is not found in dut, it should satisfy rule "ioout_0_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_0_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lastUop" is not found in dut, it should satisfy rule "ioout_0_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ldest" is not found in dut, it should satisfy rule "ioout_0_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_numWB" is not found in dut, it should satisfy rule "ioout_0_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_rfWen" is not found in dut, it should satisfy rule "ioout_0_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_selImm" is not found in dut, it should satisfy rule "ioout_0_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_trigger" is not found in dut, it should satisfy rule "ioout_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_0_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_0_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_0_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vecWen" is not found in dut, it should satisfy rule "ioout_0_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlWen" is not found in dut, it should satisfy rule "ioout_0_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_0_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_waitForward" is not found in dut, it should satisfy rule "ioout_0_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_wfflags" is not found in dut, it should satisfy rule "ioout_0_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_ready" is not found in dut, it should satisfy rule "ioout_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_valid" is not found in dut, it should satisfy rule "ioout_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_1_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_1_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_commitType" is not found in dut, it should satisfy rule "ioout_1_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_firstUop" is not found in dut, it should satisfy rule "ioout_1_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_1_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_foldpc" is not found in dut, it should satisfy rule "ioout_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpWen" is not found in dut, it should satisfy rule "ioout_1_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_1_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuType" is not found in dut, it should satisfy rule "ioout_1_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_imm" is not found in dut, it should satisfy rule "ioout_1_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_instr" is not found in dut, it should satisfy rule "ioout_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isMove" is not found in dut, it should satisfy rule "ioout_1_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isVset" is not found in dut, it should satisfy rule "ioout_1_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_1_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lastUop" is not found in dut, it should satisfy rule "ioout_1_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ldest" is not found in dut, it should satisfy rule "ioout_1_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_numWB" is not found in dut, it should satisfy rule "ioout_1_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_rfWen" is not found in dut, it should satisfy rule "ioout_1_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_selImm" is not found in dut, it should satisfy rule "ioout_1_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_trigger" is not found in dut, it should satisfy rule "ioout_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_1_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_1_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_1_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vecWen" is not found in dut, it should satisfy rule "ioout_1_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlWen" is not found in dut, it should satisfy rule "ioout_1_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_1_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_waitForward" is not found in dut, it should satisfy rule "ioout_1_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_wfflags" is not found in dut, it should satisfy rule "ioout_1_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_ready" is not found in dut, it should satisfy rule "ioout_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_valid" is not found in dut, it should satisfy rule "ioout_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_2_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_2_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_commitType" is not found in dut, it should satisfy rule "ioout_2_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_firstUop" is not found in dut, it should satisfy rule "ioout_2_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_2_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_foldpc" is not found in dut, it should satisfy rule "ioout_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpWen" is not found in dut, it should satisfy rule "ioout_2_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_2_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuType" is not found in dut, it should satisfy rule "ioout_2_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_imm" is not found in dut, it should satisfy rule "ioout_2_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_instr" is not found in dut, it should satisfy rule "ioout_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isMove" is not found in dut, it should satisfy rule "ioout_2_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isVset" is not found in dut, it should satisfy rule "ioout_2_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_2_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lastUop" is not found in dut, it should satisfy rule "ioout_2_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ldest" is not found in dut, it should satisfy rule "ioout_2_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_numWB" is not found in dut, it should satisfy rule "ioout_2_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_rfWen" is not found in dut, it should satisfy rule "ioout_2_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_selImm" is not found in dut, it should satisfy rule "ioout_2_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_trigger" is not found in dut, it should satisfy rule "ioout_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_2_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_2_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_2_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vecWen" is not found in dut, it should satisfy rule "ioout_2_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlWen" is not found in dut, it should satisfy rule "ioout_2_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_2_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_waitForward" is not found in dut, it should satisfy rule "ioout_2_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_wfflags" is not found in dut, it should satisfy rule "ioout_2_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_ready" is not found in dut, it should satisfy rule "ioout_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_valid" is not found in dut, it should satisfy rule "ioout_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_3_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_3_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_commitType" is not found in dut, it should satisfy rule "ioout_3_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_firstUop" is not found in dut, it should satisfy rule "ioout_3_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_3_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_foldpc" is not found in dut, it should satisfy rule "ioout_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpWen" is not found in dut, it should satisfy rule "ioout_3_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_3_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuType" is not found in dut, it should satisfy rule "ioout_3_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_imm" is not found in dut, it should satisfy rule "ioout_3_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_instr" is not found in dut, it should satisfy rule "ioout_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isMove" is not found in dut, it should satisfy rule "ioout_3_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isVset" is not found in dut, it should satisfy rule "ioout_3_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_3_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lastUop" is not found in dut, it should satisfy rule "ioout_3_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ldest" is not found in dut, it should satisfy rule "ioout_3_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_numWB" is not found in dut, it should satisfy rule "ioout_3_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_rfWen" is not found in dut, it should satisfy rule "ioout_3_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_selImm" is not found in dut, it should satisfy rule "ioout_3_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_trigger" is not found in dut, it should satisfy rule "ioout_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_3_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_3_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_3_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vecWen" is not found in dut, it should satisfy rule "ioout_3_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlWen" is not found in dut, it should satisfy rule "ioout_3_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_3_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_waitForward" is not found in dut, it should satisfy rule "ioout_3_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_wfflags" is not found in dut, it should satisfy rule "ioout_3_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_ready" is not found in dut, it should satisfy rule "ioout_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_valid" is not found in dut, it should satisfy rule "ioout_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_4_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_4_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_commitType" is not found in dut, it should satisfy rule "ioout_4_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_firstUop" is not found in dut, it should satisfy rule "ioout_4_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_4_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_foldpc" is not found in dut, it should satisfy rule "ioout_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpWen" is not found in dut, it should satisfy rule "ioout_4_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_4_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuType" is not found in dut, it should satisfy rule "ioout_4_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_imm" is not found in dut, it should satisfy rule "ioout_4_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_instr" is not found in dut, it should satisfy rule "ioout_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isMove" is not found in dut, it should satisfy rule "ioout_4_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isVset" is not found in dut, it should satisfy rule "ioout_4_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_4_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lastUop" is not found in dut, it should satisfy rule "ioout_4_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ldest" is not found in dut, it should satisfy rule "ioout_4_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_numWB" is not found in dut, it should satisfy rule "ioout_4_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_rfWen" is not found in dut, it should satisfy rule "ioout_4_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_selImm" is not found in dut, it should satisfy rule "ioout_4_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_trigger" is not found in dut, it should satisfy rule "ioout_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_4_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_4_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_4_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vecWen" is not found in dut, it should satisfy rule "ioout_4_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlWen" is not found in dut, it should satisfy rule "ioout_4_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_4_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_waitForward" is not found in dut, it should satisfy rule "ioout_4_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_wfflags" is not found in dut, it should satisfy rule "ioout_4_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_ready" is not found in dut, it should satisfy rule "ioout_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_valid" is not found in dut, it should satisfy rule "ioout_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_5_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_5_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_commitType" is not found in dut, it should satisfy rule "ioout_5_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_firstUop" is not found in dut, it should satisfy rule "ioout_5_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_5_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_foldpc" is not found in dut, it should satisfy rule "ioout_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpWen" is not found in dut, it should satisfy rule "ioout_5_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_5_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuType" is not found in dut, it should satisfy rule "ioout_5_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_imm" is not found in dut, it should satisfy rule "ioout_5_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_instr" is not found in dut, it should satisfy rule "ioout_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isMove" is not found in dut, it should satisfy rule "ioout_5_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isVset" is not found in dut, it should satisfy rule "ioout_5_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_5_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lastUop" is not found in dut, it should satisfy rule "ioout_5_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ldest" is not found in dut, it should satisfy rule "ioout_5_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_numWB" is not found in dut, it should satisfy rule "ioout_5_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_rfWen" is not found in dut, it should satisfy rule "ioout_5_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_selImm" is not found in dut, it should satisfy rule "ioout_5_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_trigger" is not found in dut, it should satisfy rule "ioout_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_5_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_5_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_5_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vecWen" is not found in dut, it should satisfy rule "ioout_5_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlWen" is not found in dut, it should satisfy rule "ioout_5_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_5_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_waitForward" is not found in dut, it should satisfy rule "ioout_5_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_wfflags" is not found in dut, it should satisfy rule "ioout_5_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_ready" is not found in dut, it should satisfy rule "ioout_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_valid" is not found in dut, it should satisfy rule "ioout_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_0_value" is not found in dut, it should satisfy rule "ioperf_0_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_1_value" is not found in dut, it should satisfy rule "ioperf_1_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_2_value" is not found in dut, it should satisfy rule "ioperf_2_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_3_value" is not found in dut, it should satisfy rule "ioperf_3_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "redirect" is not found in dut, it should satisfy rule "ioredirect"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqOffset" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_value" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_instr" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_valid" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_addr" is not found in dut, it should satisfy rule "iovecRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_hold" is not found in dut, it should satisfy rule "iovecRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_addr" is not found in dut, it should satisfy rule "iovecRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_hold" is not found in dut, it should satisfy rule "iovecRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_addr" is not found in dut, it should satisfy rule "iovecRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_hold" is not found in dut, it should satisfy rule "iovecRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_addr" is not found in dut, it should satisfy rule "iovecRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_hold" is not found in dut, it should satisfy rule "iovecRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_addr" is not found in dut, it should satisfy rule "iovecRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_hold" is not found in dut, it should satisfy rule "iovecRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_addr" is not found in dut, it should satisfy rule "iovecRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_hold" is not found in dut, it should satisfy rule "iovecRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_addr" is not found in dut, it should satisfy rule "iovecRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_hold" is not found in dut, it should satisfy rule "iovecRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_addr" is not found in dut, it should satisfy rule "iovecRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_hold" is not found in dut, it should satisfy rule "iovecRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_addr" is not found in dut, it should satisfy rule "iovecRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_hold" is not found in dut, it should satisfy rule "iovecRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_addr" is not found in dut, it should satisfy rule "iovecRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_hold" is not found in dut, it should satisfy rule "iovecRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_addr" is not found in dut, it should satisfy rule "iovecRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_hold" is not found in dut, it should satisfy rule "iovecRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_addr" is not found in dut, it should satisfy rule "iovecRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_hold" is not found in dut, it should satisfy rule "iovecRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_addr" is not found in dut, it should satisfy rule "iovecRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_hold" is not found in dut, it should satisfy rule "iovecRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_addr" is not found in dut, it should satisfy rule "iovecRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_hold" is not found in dut, it should satisfy rule "iovecRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_addr" is not found in dut, it should satisfy rule "iovecRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_hold" is not found in dut, it should satisfy rule "iovecRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_addr" is not found in dut, it should satisfy rule "iovecRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_hold" is not found in dut, it should satisfy rule "iovecRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_addr" is not found in dut, it should satisfy rule "iovecRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_hold" is not found in dut, it should satisfy rule "iovecRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_addr" is not found in dut, it should satisfy rule "iovecRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_hold" is not found in dut, it should satisfy rule "iovecRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_illegal" is not found in dut, it should satisfy rule "iovsetvlVType_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vlmul" is not found in dut, it should satisfy rule "iovsetvlVType_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vma" is not found in dut, it should satisfy rule "iovsetvlVType_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vsew" is not found in dut, it should satisfy rule "iovsetvlVType_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vta" is not found in dut, it should satisfy rule "iovsetvlVType_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vstart" is not found in dut, it should satisfy rule "iovstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "iofsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ioill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "ioin"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "ioout_bits"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "csrCtrl_singlestep" is not found in dut, it should satisfy rule "iocsrCtrl_singlestep"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_addr" is not found in dut, it should satisfy rule "iofpRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_hold" is not found in dut, it should satisfy rule "iofpRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_addr" is not found in dut, it should satisfy rule "iofpRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_hold" is not found in dut, it should satisfy rule "iofpRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_addr" is not found in dut, it should satisfy rule "iofpRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_hold" is not found in dut, it should satisfy rule "iofpRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_addr" is not found in dut, it should satisfy rule "iofpRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_hold" is not found in dut, it should satisfy rule "iofpRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_addr" is not found in dut, it should satisfy rule "iofpRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_hold" is not found in dut, it should satisfy rule "iofpRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_addr" is not found in dut, it should satisfy rule "iofpRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_hold" is not found in dut, it should satisfy rule "iofpRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_addr" is not found in dut, it should satisfy rule "iofpRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_hold" is not found in dut, it should satisfy rule "iofpRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_addr" is not found in dut, it should satisfy rule "iofpRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_hold" is not found in dut, it should satisfy rule "iofpRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_addr" is not found in dut, it should satisfy rule "iofpRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_hold" is not found in dut, it should satisfy rule "iofpRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_addr" is not found in dut, it should satisfy rule "iofpRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_hold" is not found in dut, it should satisfy rule "iofpRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_addr" is not found in dut, it should satisfy rule "iofpRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_hold" is not found in dut, it should satisfy rule "iofpRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_addr" is not found in dut, it should satisfy rule "iofpRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_hold" is not found in dut, it should satisfy rule "iofpRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_addr" is not found in dut, it should satisfy rule "iofpRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_hold" is not found in dut, it should satisfy rule "iofpRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_addr" is not found in dut, it should satisfy rule "iofpRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_hold" is not found in dut, it should satisfy rule "iofpRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_addr" is not found in dut, it should satisfy rule "iofpRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_hold" is not found in dut, it should satisfy rule "iofpRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_addr" is not found in dut, it should satisfy rule "iofpRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_hold" is not found in dut, it should satisfy rule "iofpRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_addr" is not found in dut, it should satisfy rule "iofpRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_hold" is not found in dut, it should satisfy rule "iofpRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_addr" is not found in dut, it should satisfy rule "iofpRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_hold" is not found in dut, it should satisfy rule "iofpRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_frm" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_frm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_fsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceGVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceGVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceVVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceVVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_vsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_vsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_special_cboI2F" is not found in dut, it should satisfy rule "iofromCSR_special_cboI2F"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hfence" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hfence"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_hasVsetvl" is not found in dut, it should satisfy rule "iofromRob_commitVType_hasVsetvl"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vma" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vta" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_valid" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_isResumeVType" is not found in dut, it should satisfy rule "iofromRob_isResumeVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkToArchVType" is not found in dut, it should satisfy rule "iofromRob_walkToArchVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vma" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vta" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_valid" is not found in dut, it should satisfy rule "iofromRob_walkVType_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_0" is not found in dut, it should satisfy rule "iofusion_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_1" is not found in dut, it should satisfy rule "iofusion_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_2" is not found in dut, it should satisfy rule "iofusion_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_3" is not found in dut, it should satisfy rule "iofusion_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_4" is not found in dut, it should satisfy rule "iofusion_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_foldpc" is not found in dut, it should satisfy rule "ioin_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_instr" is not found in dut, it should satisfy rule "ioin_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_0_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_trigger" is not found in dut, it should satisfy rule "ioin_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_ready" is not found in dut, it should satisfy rule "ioin_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_valid" is not found in dut, it should satisfy rule "ioin_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_foldpc" is not found in dut, it should satisfy rule "ioin_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_instr" is not found in dut, it should satisfy rule "ioin_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_1_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_trigger" is not found in dut, it should satisfy rule "ioin_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_ready" is not found in dut, it should satisfy rule "ioin_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_valid" is not found in dut, it should satisfy rule "ioin_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_foldpc" is not found in dut, it should satisfy rule "ioin_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_instr" is not found in dut, it should satisfy rule "ioin_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_2_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_trigger" is not found in dut, it should satisfy rule "ioin_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_ready" is not found in dut, it should satisfy rule "ioin_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_valid" is not found in dut, it should satisfy rule "ioin_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_foldpc" is not found in dut, it should satisfy rule "ioin_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_instr" is not found in dut, it should satisfy rule "ioin_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_3_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_trigger" is not found in dut, it should satisfy rule "ioin_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_ready" is not found in dut, it should satisfy rule "ioin_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_valid" is not found in dut, it should satisfy rule "ioin_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_foldpc" is not found in dut, it should satisfy rule "ioin_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_instr" is not found in dut, it should satisfy rule "ioin_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_4_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_trigger" is not found in dut, it should satisfy rule "ioin_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_ready" is not found in dut, it should satisfy rule "ioin_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_valid" is not found in dut, it should satisfy rule "ioin_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_foldpc" is not found in dut, it should satisfy rule "ioin_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_instr" is not found in dut, it should satisfy rule "ioin_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_5_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_trigger" is not found in dut, it should satisfy rule "ioin_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_ready" is not found in dut, it should satisfy rule "ioin_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_valid" is not found in dut, it should satisfy rule "ioin_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_addr" is not found in dut, it should satisfy rule "iointRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_hold" is not found in dut, it should satisfy rule "iointRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_addr" is not found in dut, it should satisfy rule "iointRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_hold" is not found in dut, it should satisfy rule "iointRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_addr" is not found in dut, it should satisfy rule "iointRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_hold" is not found in dut, it should satisfy rule "iointRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_addr" is not found in dut, it should satisfy rule "iointRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_hold" is not found in dut, it should satisfy rule "iointRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_addr" is not found in dut, it should satisfy rule "iointRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_hold" is not found in dut, it should satisfy rule "iointRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_addr" is not found in dut, it should satisfy rule "iointRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_hold" is not found in dut, it should satisfy rule "iointRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_addr" is not found in dut, it should satisfy rule "iointRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_hold" is not found in dut, it should satisfy rule "iointRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_addr" is not found in dut, it should satisfy rule "iointRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_hold" is not found in dut, it should satisfy rule "iointRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_addr" is not found in dut, it should satisfy rule "iointRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_hold" is not found in dut, it should satisfy rule "iointRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_addr" is not found in dut, it should satisfy rule "iointRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_hold" is not found in dut, it should satisfy rule "iointRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_addr" is not found in dut, it should satisfy rule "iointRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_hold" is not found in dut, it should satisfy rule "iointRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_addr" is not found in dut, it should satisfy rule "iointRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_hold" is not found in dut, it should satisfy rule "iointRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_0_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_0_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_commitType" is not found in dut, it should satisfy rule "ioout_0_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_firstUop" is not found in dut, it should satisfy rule "ioout_0_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_0_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_foldpc" is not found in dut, it should satisfy rule "ioout_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpWen" is not found in dut, it should satisfy rule "ioout_0_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_0_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuType" is not found in dut, it should satisfy rule "ioout_0_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_imm" is not found in dut, it should satisfy rule "ioout_0_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_instr" is not found in dut, it should satisfy rule "ioout_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isMove" is not found in dut, it should satisfy rule "ioout_0_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isVset" is not found in dut, it should satisfy rule "ioout_0_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_0_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lastUop" is not found in dut, it should satisfy rule "ioout_0_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ldest" is not found in dut, it should satisfy rule "ioout_0_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_numWB" is not found in dut, it should satisfy rule "ioout_0_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_rfWen" is not found in dut, it should satisfy rule "ioout_0_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_selImm" is not found in dut, it should satisfy rule "ioout_0_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_trigger" is not found in dut, it should satisfy rule "ioout_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_0_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_0_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_0_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vecWen" is not found in dut, it should satisfy rule "ioout_0_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlWen" is not found in dut, it should satisfy rule "ioout_0_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_0_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_waitForward" is not found in dut, it should satisfy rule "ioout_0_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_wfflags" is not found in dut, it should satisfy rule "ioout_0_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_ready" is not found in dut, it should satisfy rule "ioout_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_valid" is not found in dut, it should satisfy rule "ioout_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_1_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_1_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_commitType" is not found in dut, it should satisfy rule "ioout_1_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_firstUop" is not found in dut, it should satisfy rule "ioout_1_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_1_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_foldpc" is not found in dut, it should satisfy rule "ioout_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpWen" is not found in dut, it should satisfy rule "ioout_1_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_1_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuType" is not found in dut, it should satisfy rule "ioout_1_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_imm" is not found in dut, it should satisfy rule "ioout_1_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_instr" is not found in dut, it should satisfy rule "ioout_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isMove" is not found in dut, it should satisfy rule "ioout_1_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isVset" is not found in dut, it should satisfy rule "ioout_1_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_1_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lastUop" is not found in dut, it should satisfy rule "ioout_1_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ldest" is not found in dut, it should satisfy rule "ioout_1_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_numWB" is not found in dut, it should satisfy rule "ioout_1_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_rfWen" is not found in dut, it should satisfy rule "ioout_1_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_selImm" is not found in dut, it should satisfy rule "ioout_1_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_trigger" is not found in dut, it should satisfy rule "ioout_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_1_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_1_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_1_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vecWen" is not found in dut, it should satisfy rule "ioout_1_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlWen" is not found in dut, it should satisfy rule "ioout_1_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_1_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_waitForward" is not found in dut, it should satisfy rule "ioout_1_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_wfflags" is not found in dut, it should satisfy rule "ioout_1_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_ready" is not found in dut, it should satisfy rule "ioout_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_valid" is not found in dut, it should satisfy rule "ioout_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_2_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_2_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_commitType" is not found in dut, it should satisfy rule "ioout_2_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_firstUop" is not found in dut, it should satisfy rule "ioout_2_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_2_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_foldpc" is not found in dut, it should satisfy rule "ioout_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpWen" is not found in dut, it should satisfy rule "ioout_2_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_2_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuType" is not found in dut, it should satisfy rule "ioout_2_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_imm" is not found in dut, it should satisfy rule "ioout_2_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_instr" is not found in dut, it should satisfy rule "ioout_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isMove" is not found in dut, it should satisfy rule "ioout_2_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isVset" is not found in dut, it should satisfy rule "ioout_2_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_2_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lastUop" is not found in dut, it should satisfy rule "ioout_2_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ldest" is not found in dut, it should satisfy rule "ioout_2_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_numWB" is not found in dut, it should satisfy rule "ioout_2_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_rfWen" is not found in dut, it should satisfy rule "ioout_2_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_selImm" is not found in dut, it should satisfy rule "ioout_2_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_trigger" is not found in dut, it should satisfy rule "ioout_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_2_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_2_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_2_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vecWen" is not found in dut, it should satisfy rule "ioout_2_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlWen" is not found in dut, it should satisfy rule "ioout_2_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_2_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_waitForward" is not found in dut, it should satisfy rule "ioout_2_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_wfflags" is not found in dut, it should satisfy rule "ioout_2_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_ready" is not found in dut, it should satisfy rule "ioout_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_valid" is not found in dut, it should satisfy rule "ioout_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_3_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_3_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_commitType" is not found in dut, it should satisfy rule "ioout_3_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_firstUop" is not found in dut, it should satisfy rule "ioout_3_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_3_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_foldpc" is not found in dut, it should satisfy rule "ioout_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpWen" is not found in dut, it should satisfy rule "ioout_3_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_3_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuType" is not found in dut, it should satisfy rule "ioout_3_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_imm" is not found in dut, it should satisfy rule "ioout_3_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_instr" is not found in dut, it should satisfy rule "ioout_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isMove" is not found in dut, it should satisfy rule "ioout_3_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isVset" is not found in dut, it should satisfy rule "ioout_3_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_3_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lastUop" is not found in dut, it should satisfy rule "ioout_3_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ldest" is not found in dut, it should satisfy rule "ioout_3_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_numWB" is not found in dut, it should satisfy rule "ioout_3_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_rfWen" is not found in dut, it should satisfy rule "ioout_3_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_selImm" is not found in dut, it should satisfy rule "ioout_3_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_trigger" is not found in dut, it should satisfy rule "ioout_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_3_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_3_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_3_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vecWen" is not found in dut, it should satisfy rule "ioout_3_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlWen" is not found in dut, it should satisfy rule "ioout_3_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_3_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_waitForward" is not found in dut, it should satisfy rule "ioout_3_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_wfflags" is not found in dut, it should satisfy rule "ioout_3_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_ready" is not found in dut, it should satisfy rule "ioout_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_valid" is not found in dut, it should satisfy rule "ioout_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_4_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_4_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_commitType" is not found in dut, it should satisfy rule "ioout_4_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_firstUop" is not found in dut, it should satisfy rule "ioout_4_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_4_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_foldpc" is not found in dut, it should satisfy rule "ioout_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpWen" is not found in dut, it should satisfy rule "ioout_4_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_4_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuType" is not found in dut, it should satisfy rule "ioout_4_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_imm" is not found in dut, it should satisfy rule "ioout_4_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_instr" is not found in dut, it should satisfy rule "ioout_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isMove" is not found in dut, it should satisfy rule "ioout_4_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isVset" is not found in dut, it should satisfy rule "ioout_4_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_4_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lastUop" is not found in dut, it should satisfy rule "ioout_4_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ldest" is not found in dut, it should satisfy rule "ioout_4_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_numWB" is not found in dut, it should satisfy rule "ioout_4_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_rfWen" is not found in dut, it should satisfy rule "ioout_4_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_selImm" is not found in dut, it should satisfy rule "ioout_4_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_trigger" is not found in dut, it should satisfy rule "ioout_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_4_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_4_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_4_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vecWen" is not found in dut, it should satisfy rule "ioout_4_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlWen" is not found in dut, it should satisfy rule "ioout_4_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_4_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_waitForward" is not found in dut, it should satisfy rule "ioout_4_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_wfflags" is not found in dut, it should satisfy rule "ioout_4_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_ready" is not found in dut, it should satisfy rule "ioout_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_valid" is not found in dut, it should satisfy rule "ioout_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_5_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_5_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_commitType" is not found in dut, it should satisfy rule "ioout_5_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_firstUop" is not found in dut, it should satisfy rule "ioout_5_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_5_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_foldpc" is not found in dut, it should satisfy rule "ioout_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpWen" is not found in dut, it should satisfy rule "ioout_5_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_5_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuType" is not found in dut, it should satisfy rule "ioout_5_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_imm" is not found in dut, it should satisfy rule "ioout_5_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_instr" is not found in dut, it should satisfy rule "ioout_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isMove" is not found in dut, it should satisfy rule "ioout_5_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isVset" is not found in dut, it should satisfy rule "ioout_5_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_5_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lastUop" is not found in dut, it should satisfy rule "ioout_5_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ldest" is not found in dut, it should satisfy rule "ioout_5_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_numWB" is not found in dut, it should satisfy rule "ioout_5_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_rfWen" is not found in dut, it should satisfy rule "ioout_5_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_selImm" is not found in dut, it should satisfy rule "ioout_5_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_trigger" is not found in dut, it should satisfy rule "ioout_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_5_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_5_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_5_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vecWen" is not found in dut, it should satisfy rule "ioout_5_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlWen" is not found in dut, it should satisfy rule "ioout_5_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_5_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_waitForward" is not found in dut, it should satisfy rule "ioout_5_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_wfflags" is not found in dut, it should satisfy rule "ioout_5_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_ready" is not found in dut, it should satisfy rule "ioout_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_valid" is not found in dut, it should satisfy rule "ioout_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_0_value" is not found in dut, it should satisfy rule "ioperf_0_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_1_value" is not found in dut, it should satisfy rule "ioperf_1_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_2_value" is not found in dut, it should satisfy rule "ioperf_2_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_3_value" is not found in dut, it should satisfy rule "ioperf_3_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "redirect" is not found in dut, it should satisfy rule "ioredirect"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqOffset" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_value" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_instr" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_valid" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_addr" is not found in dut, it should satisfy rule "iovecRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_hold" is not found in dut, it should satisfy rule "iovecRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_addr" is not found in dut, it should satisfy rule "iovecRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_hold" is not found in dut, it should satisfy rule "iovecRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_addr" is not found in dut, it should satisfy rule "iovecRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_hold" is not found in dut, it should satisfy rule "iovecRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_addr" is not found in dut, it should satisfy rule "iovecRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_hold" is not found in dut, it should satisfy rule "iovecRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_addr" is not found in dut, it should satisfy rule "iovecRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_hold" is not found in dut, it should satisfy rule "iovecRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_addr" is not found in dut, it should satisfy rule "iovecRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_hold" is not found in dut, it should satisfy rule "iovecRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_addr" is not found in dut, it should satisfy rule "iovecRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_hold" is not found in dut, it should satisfy rule "iovecRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_addr" is not found in dut, it should satisfy rule "iovecRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_hold" is not found in dut, it should satisfy rule "iovecRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_addr" is not found in dut, it should satisfy rule "iovecRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_hold" is not found in dut, it should satisfy rule "iovecRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_addr" is not found in dut, it should satisfy rule "iovecRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_hold" is not found in dut, it should satisfy rule "iovecRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_addr" is not found in dut, it should satisfy rule "iovecRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_hold" is not found in dut, it should satisfy rule "iovecRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_addr" is not found in dut, it should satisfy rule "iovecRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_hold" is not found in dut, it should satisfy rule "iovecRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_addr" is not found in dut, it should satisfy rule "iovecRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_hold" is not found in dut, it should satisfy rule "iovecRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_addr" is not found in dut, it should satisfy rule "iovecRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_hold" is not found in dut, it should satisfy rule "iovecRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_addr" is not found in dut, it should satisfy rule "iovecRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_hold" is not found in dut, it should satisfy rule "iovecRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_addr" is not found in dut, it should satisfy rule "iovecRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_hold" is not found in dut, it should satisfy rule "iovecRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_addr" is not found in dut, it should satisfy rule "iovecRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_hold" is not found in dut, it should satisfy rule "iovecRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_addr" is not found in dut, it should satisfy rule "iovecRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_hold" is not found in dut, it should satisfy rule "iovecRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_illegal" is not found in dut, it should satisfy rule "iovsetvlVType_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vlmul" is not found in dut, it should satisfy rule "iovsetvlVType_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vma" is not found in dut, it should satisfy rule "iovsetvlVType_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vsew" is not found in dut, it should satisfy rule "iovsetvlVType_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vta" is not found in dut, it should satisfy rule "iovsetvlVType_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vstart" is not found in dut, it should satisfy rule "iovstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "iofsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ioill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "ioin"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "ioout_bits"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "csrCtrl_singlestep" is not found in dut, it should satisfy rule "iocsrCtrl_singlestep"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_addr" is not found in dut, it should satisfy rule "iofpRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_hold" is not found in dut, it should satisfy rule "iofpRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_addr" is not found in dut, it should satisfy rule "iofpRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_hold" is not found in dut, it should satisfy rule "iofpRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_addr" is not found in dut, it should satisfy rule "iofpRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_hold" is not found in dut, it should satisfy rule "iofpRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_addr" is not found in dut, it should satisfy rule "iofpRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_hold" is not found in dut, it should satisfy rule "iofpRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_addr" is not found in dut, it should satisfy rule "iofpRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_hold" is not found in dut, it should satisfy rule "iofpRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_addr" is not found in dut, it should satisfy rule "iofpRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_hold" is not found in dut, it should satisfy rule "iofpRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_addr" is not found in dut, it should satisfy rule "iofpRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_hold" is not found in dut, it should satisfy rule "iofpRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_addr" is not found in dut, it should satisfy rule "iofpRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_hold" is not found in dut, it should satisfy rule "iofpRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_addr" is not found in dut, it should satisfy rule "iofpRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_hold" is not found in dut, it should satisfy rule "iofpRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_addr" is not found in dut, it should satisfy rule "iofpRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_hold" is not found in dut, it should satisfy rule "iofpRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_addr" is not found in dut, it should satisfy rule "iofpRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_hold" is not found in dut, it should satisfy rule "iofpRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_addr" is not found in dut, it should satisfy rule "iofpRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_hold" is not found in dut, it should satisfy rule "iofpRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_addr" is not found in dut, it should satisfy rule "iofpRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_hold" is not found in dut, it should satisfy rule "iofpRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_addr" is not found in dut, it should satisfy rule "iofpRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_hold" is not found in dut, it should satisfy rule "iofpRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_addr" is not found in dut, it should satisfy rule "iofpRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_hold" is not found in dut, it should satisfy rule "iofpRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_addr" is not found in dut, it should satisfy rule "iofpRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_hold" is not found in dut, it should satisfy rule "iofpRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_addr" is not found in dut, it should satisfy rule "iofpRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_hold" is not found in dut, it should satisfy rule "iofpRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_addr" is not found in dut, it should satisfy rule "iofpRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_hold" is not found in dut, it should satisfy rule "iofpRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_frm" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_frm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_fsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceGVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceGVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceVVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceVVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_vsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_vsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_special_cboI2F" is not found in dut, it should satisfy rule "iofromCSR_special_cboI2F"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hfence" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hfence"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_hasVsetvl" is not found in dut, it should satisfy rule "iofromRob_commitVType_hasVsetvl"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vma" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vta" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_valid" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_isResumeVType" is not found in dut, it should satisfy rule "iofromRob_isResumeVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkToArchVType" is not found in dut, it should satisfy rule "iofromRob_walkToArchVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vma" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vta" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_valid" is not found in dut, it should satisfy rule "iofromRob_walkVType_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_0" is not found in dut, it should satisfy rule "iofusion_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_1" is not found in dut, it should satisfy rule "iofusion_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_2" is not found in dut, it should satisfy rule "iofusion_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_3" is not found in dut, it should satisfy rule "iofusion_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_4" is not found in dut, it should satisfy rule "iofusion_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_foldpc" is not found in dut, it should satisfy rule "ioin_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_instr" is not found in dut, it should satisfy rule "ioin_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_0_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_trigger" is not found in dut, it should satisfy rule "ioin_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_ready" is not found in dut, it should satisfy rule "ioin_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_valid" is not found in dut, it should satisfy rule "ioin_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_foldpc" is not found in dut, it should satisfy rule "ioin_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_instr" is not found in dut, it should satisfy rule "ioin_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_1_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_trigger" is not found in dut, it should satisfy rule "ioin_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_ready" is not found in dut, it should satisfy rule "ioin_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_valid" is not found in dut, it should satisfy rule "ioin_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_foldpc" is not found in dut, it should satisfy rule "ioin_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_instr" is not found in dut, it should satisfy rule "ioin_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_2_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_trigger" is not found in dut, it should satisfy rule "ioin_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_ready" is not found in dut, it should satisfy rule "ioin_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_valid" is not found in dut, it should satisfy rule "ioin_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_foldpc" is not found in dut, it should satisfy rule "ioin_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_instr" is not found in dut, it should satisfy rule "ioin_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_3_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_trigger" is not found in dut, it should satisfy rule "ioin_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_ready" is not found in dut, it should satisfy rule "ioin_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_valid" is not found in dut, it should satisfy rule "ioin_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_foldpc" is not found in dut, it should satisfy rule "ioin_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_instr" is not found in dut, it should satisfy rule "ioin_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_4_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_trigger" is not found in dut, it should satisfy rule "ioin_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_ready" is not found in dut, it should satisfy rule "ioin_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_valid" is not found in dut, it should satisfy rule "ioin_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_foldpc" is not found in dut, it should satisfy rule "ioin_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_instr" is not found in dut, it should satisfy rule "ioin_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_5_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_trigger" is not found in dut, it should satisfy rule "ioin_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_ready" is not found in dut, it should satisfy rule "ioin_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_valid" is not found in dut, it should satisfy rule "ioin_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_addr" is not found in dut, it should satisfy rule "iointRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_hold" is not found in dut, it should satisfy rule "iointRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_addr" is not found in dut, it should satisfy rule "iointRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_hold" is not found in dut, it should satisfy rule "iointRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_addr" is not found in dut, it should satisfy rule "iointRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_hold" is not found in dut, it should satisfy rule "iointRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_addr" is not found in dut, it should satisfy rule "iointRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_hold" is not found in dut, it should satisfy rule "iointRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_addr" is not found in dut, it should satisfy rule "iointRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_hold" is not found in dut, it should satisfy rule "iointRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_addr" is not found in dut, it should satisfy rule "iointRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_hold" is not found in dut, it should satisfy rule "iointRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_addr" is not found in dut, it should satisfy rule "iointRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_hold" is not found in dut, it should satisfy rule "iointRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_addr" is not found in dut, it should satisfy rule "iointRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_hold" is not found in dut, it should satisfy rule "iointRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_addr" is not found in dut, it should satisfy rule "iointRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_hold" is not found in dut, it should satisfy rule "iointRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_addr" is not found in dut, it should satisfy rule "iointRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_hold" is not found in dut, it should satisfy rule "iointRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_addr" is not found in dut, it should satisfy rule "iointRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_hold" is not found in dut, it should satisfy rule "iointRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_addr" is not found in dut, it should satisfy rule "iointRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_hold" is not found in dut, it should satisfy rule "iointRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_0_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_0_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_commitType" is not found in dut, it should satisfy rule "ioout_0_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_firstUop" is not found in dut, it should satisfy rule "ioout_0_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_0_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_foldpc" is not found in dut, it should satisfy rule "ioout_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpWen" is not found in dut, it should satisfy rule "ioout_0_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_0_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuType" is not found in dut, it should satisfy rule "ioout_0_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_imm" is not found in dut, it should satisfy rule "ioout_0_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_instr" is not found in dut, it should satisfy rule "ioout_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isMove" is not found in dut, it should satisfy rule "ioout_0_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isVset" is not found in dut, it should satisfy rule "ioout_0_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_0_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lastUop" is not found in dut, it should satisfy rule "ioout_0_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ldest" is not found in dut, it should satisfy rule "ioout_0_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_numWB" is not found in dut, it should satisfy rule "ioout_0_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_rfWen" is not found in dut, it should satisfy rule "ioout_0_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_selImm" is not found in dut, it should satisfy rule "ioout_0_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_trigger" is not found in dut, it should satisfy rule "ioout_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_0_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_0_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_0_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vecWen" is not found in dut, it should satisfy rule "ioout_0_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlWen" is not found in dut, it should satisfy rule "ioout_0_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_0_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_waitForward" is not found in dut, it should satisfy rule "ioout_0_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_wfflags" is not found in dut, it should satisfy rule "ioout_0_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_ready" is not found in dut, it should satisfy rule "ioout_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_valid" is not found in dut, it should satisfy rule "ioout_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_1_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_1_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_commitType" is not found in dut, it should satisfy rule "ioout_1_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_firstUop" is not found in dut, it should satisfy rule "ioout_1_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_1_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_foldpc" is not found in dut, it should satisfy rule "ioout_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpWen" is not found in dut, it should satisfy rule "ioout_1_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_1_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuType" is not found in dut, it should satisfy rule "ioout_1_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_imm" is not found in dut, it should satisfy rule "ioout_1_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_instr" is not found in dut, it should satisfy rule "ioout_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isMove" is not found in dut, it should satisfy rule "ioout_1_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isVset" is not found in dut, it should satisfy rule "ioout_1_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_1_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lastUop" is not found in dut, it should satisfy rule "ioout_1_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ldest" is not found in dut, it should satisfy rule "ioout_1_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_numWB" is not found in dut, it should satisfy rule "ioout_1_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_rfWen" is not found in dut, it should satisfy rule "ioout_1_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_selImm" is not found in dut, it should satisfy rule "ioout_1_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_trigger" is not found in dut, it should satisfy rule "ioout_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_1_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_1_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_1_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vecWen" is not found in dut, it should satisfy rule "ioout_1_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlWen" is not found in dut, it should satisfy rule "ioout_1_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_1_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_waitForward" is not found in dut, it should satisfy rule "ioout_1_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_wfflags" is not found in dut, it should satisfy rule "ioout_1_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_ready" is not found in dut, it should satisfy rule "ioout_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_valid" is not found in dut, it should satisfy rule "ioout_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_2_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_2_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_commitType" is not found in dut, it should satisfy rule "ioout_2_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_firstUop" is not found in dut, it should satisfy rule "ioout_2_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_2_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_foldpc" is not found in dut, it should satisfy rule "ioout_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpWen" is not found in dut, it should satisfy rule "ioout_2_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_2_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuType" is not found in dut, it should satisfy rule "ioout_2_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_imm" is not found in dut, it should satisfy rule "ioout_2_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_instr" is not found in dut, it should satisfy rule "ioout_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isMove" is not found in dut, it should satisfy rule "ioout_2_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isVset" is not found in dut, it should satisfy rule "ioout_2_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_2_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lastUop" is not found in dut, it should satisfy rule "ioout_2_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ldest" is not found in dut, it should satisfy rule "ioout_2_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_numWB" is not found in dut, it should satisfy rule "ioout_2_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_rfWen" is not found in dut, it should satisfy rule "ioout_2_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_selImm" is not found in dut, it should satisfy rule "ioout_2_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_trigger" is not found in dut, it should satisfy rule "ioout_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_2_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_2_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_2_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vecWen" is not found in dut, it should satisfy rule "ioout_2_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlWen" is not found in dut, it should satisfy rule "ioout_2_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_2_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_waitForward" is not found in dut, it should satisfy rule "ioout_2_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_wfflags" is not found in dut, it should satisfy rule "ioout_2_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_ready" is not found in dut, it should satisfy rule "ioout_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_valid" is not found in dut, it should satisfy rule "ioout_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_3_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_3_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_commitType" is not found in dut, it should satisfy rule "ioout_3_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_firstUop" is not found in dut, it should satisfy rule "ioout_3_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_3_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_foldpc" is not found in dut, it should satisfy rule "ioout_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpWen" is not found in dut, it should satisfy rule "ioout_3_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_3_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuType" is not found in dut, it should satisfy rule "ioout_3_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_imm" is not found in dut, it should satisfy rule "ioout_3_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_instr" is not found in dut, it should satisfy rule "ioout_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isMove" is not found in dut, it should satisfy rule "ioout_3_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isVset" is not found in dut, it should satisfy rule "ioout_3_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_3_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lastUop" is not found in dut, it should satisfy rule "ioout_3_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ldest" is not found in dut, it should satisfy rule "ioout_3_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_numWB" is not found in dut, it should satisfy rule "ioout_3_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_rfWen" is not found in dut, it should satisfy rule "ioout_3_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_selImm" is not found in dut, it should satisfy rule "ioout_3_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_trigger" is not found in dut, it should satisfy rule "ioout_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_3_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_3_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_3_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vecWen" is not found in dut, it should satisfy rule "ioout_3_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlWen" is not found in dut, it should satisfy rule "ioout_3_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_3_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_waitForward" is not found in dut, it should satisfy rule "ioout_3_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_wfflags" is not found in dut, it should satisfy rule "ioout_3_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_ready" is not found in dut, it should satisfy rule "ioout_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_valid" is not found in dut, it should satisfy rule "ioout_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_4_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_4_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_commitType" is not found in dut, it should satisfy rule "ioout_4_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_firstUop" is not found in dut, it should satisfy rule "ioout_4_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_4_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_foldpc" is not found in dut, it should satisfy rule "ioout_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpWen" is not found in dut, it should satisfy rule "ioout_4_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_4_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuType" is not found in dut, it should satisfy rule "ioout_4_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_imm" is not found in dut, it should satisfy rule "ioout_4_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_instr" is not found in dut, it should satisfy rule "ioout_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isMove" is not found in dut, it should satisfy rule "ioout_4_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isVset" is not found in dut, it should satisfy rule "ioout_4_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_4_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lastUop" is not found in dut, it should satisfy rule "ioout_4_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ldest" is not found in dut, it should satisfy rule "ioout_4_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_numWB" is not found in dut, it should satisfy rule "ioout_4_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_rfWen" is not found in dut, it should satisfy rule "ioout_4_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_selImm" is not found in dut, it should satisfy rule "ioout_4_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_trigger" is not found in dut, it should satisfy rule "ioout_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_4_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_4_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_4_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vecWen" is not found in dut, it should satisfy rule "ioout_4_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlWen" is not found in dut, it should satisfy rule "ioout_4_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_4_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_waitForward" is not found in dut, it should satisfy rule "ioout_4_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_wfflags" is not found in dut, it should satisfy rule "ioout_4_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_ready" is not found in dut, it should satisfy rule "ioout_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_valid" is not found in dut, it should satisfy rule "ioout_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_5_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_5_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_commitType" is not found in dut, it should satisfy rule "ioout_5_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_firstUop" is not found in dut, it should satisfy rule "ioout_5_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_5_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_foldpc" is not found in dut, it should satisfy rule "ioout_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpWen" is not found in dut, it should satisfy rule "ioout_5_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_5_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuType" is not found in dut, it should satisfy rule "ioout_5_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_imm" is not found in dut, it should satisfy rule "ioout_5_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_instr" is not found in dut, it should satisfy rule "ioout_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isMove" is not found in dut, it should satisfy rule "ioout_5_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isVset" is not found in dut, it should satisfy rule "ioout_5_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_5_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lastUop" is not found in dut, it should satisfy rule "ioout_5_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ldest" is not found in dut, it should satisfy rule "ioout_5_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_numWB" is not found in dut, it should satisfy rule "ioout_5_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_rfWen" is not found in dut, it should satisfy rule "ioout_5_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_selImm" is not found in dut, it should satisfy rule "ioout_5_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_trigger" is not found in dut, it should satisfy rule "ioout_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_5_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_5_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_5_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vecWen" is not found in dut, it should satisfy rule "ioout_5_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlWen" is not found in dut, it should satisfy rule "ioout_5_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_5_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_waitForward" is not found in dut, it should satisfy rule "ioout_5_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_wfflags" is not found in dut, it should satisfy rule "ioout_5_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_ready" is not found in dut, it should satisfy rule "ioout_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_valid" is not found in dut, it should satisfy rule "ioout_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_0_value" is not found in dut, it should satisfy rule "ioperf_0_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_1_value" is not found in dut, it should satisfy rule "ioperf_1_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_2_value" is not found in dut, it should satisfy rule "ioperf_2_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_3_value" is not found in dut, it should satisfy rule "ioperf_3_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "redirect" is not found in dut, it should satisfy rule "ioredirect"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqOffset" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_value" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_instr" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_valid" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_addr" is not found in dut, it should satisfy rule "iovecRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_hold" is not found in dut, it should satisfy rule "iovecRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_addr" is not found in dut, it should satisfy rule "iovecRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_hold" is not found in dut, it should satisfy rule "iovecRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_addr" is not found in dut, it should satisfy rule "iovecRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_hold" is not found in dut, it should satisfy rule "iovecRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_addr" is not found in dut, it should satisfy rule "iovecRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_hold" is not found in dut, it should satisfy rule "iovecRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_addr" is not found in dut, it should satisfy rule "iovecRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_hold" is not found in dut, it should satisfy rule "iovecRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_addr" is not found in dut, it should satisfy rule "iovecRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_hold" is not found in dut, it should satisfy rule "iovecRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_addr" is not found in dut, it should satisfy rule "iovecRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_hold" is not found in dut, it should satisfy rule "iovecRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_addr" is not found in dut, it should satisfy rule "iovecRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_hold" is not found in dut, it should satisfy rule "iovecRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_addr" is not found in dut, it should satisfy rule "iovecRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_hold" is not found in dut, it should satisfy rule "iovecRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_addr" is not found in dut, it should satisfy rule "iovecRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_hold" is not found in dut, it should satisfy rule "iovecRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_addr" is not found in dut, it should satisfy rule "iovecRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_hold" is not found in dut, it should satisfy rule "iovecRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_addr" is not found in dut, it should satisfy rule "iovecRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_hold" is not found in dut, it should satisfy rule "iovecRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_addr" is not found in dut, it should satisfy rule "iovecRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_hold" is not found in dut, it should satisfy rule "iovecRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_addr" is not found in dut, it should satisfy rule "iovecRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_hold" is not found in dut, it should satisfy rule "iovecRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_addr" is not found in dut, it should satisfy rule "iovecRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_hold" is not found in dut, it should satisfy rule "iovecRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_addr" is not found in dut, it should satisfy rule "iovecRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_hold" is not found in dut, it should satisfy rule "iovecRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_addr" is not found in dut, it should satisfy rule "iovecRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_hold" is not found in dut, it should satisfy rule "iovecRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_addr" is not found in dut, it should satisfy rule "iovecRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_hold" is not found in dut, it should satisfy rule "iovecRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_illegal" is not found in dut, it should satisfy rule "iovsetvlVType_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vlmul" is not found in dut, it should satisfy rule "iovsetvlVType_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vma" is not found in dut, it should satisfy rule "iovsetvlVType_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vsew" is not found in dut, it should satisfy rule "iovsetvlVType_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vta" is not found in dut, it should satisfy rule "iovsetvlVType_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vstart" is not found in dut, it should satisfy rule "iovstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "iofsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ioill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "ioin"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "ioout_bits"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "iofsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ioill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "ioin"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "ioout_bits"

Call

Teardown

Captured log teardown
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

PASSED test_rvc_expand_16bit_full[6553-13106] 0:00:10.503799

Test the RVC expand function with a full compressed instruction set

Description:

Perform an expand check on 16-bit compressed instructions within the range from 'start' to 'end'.

Setup

Captured log setup
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "csrCtrl_singlestep" is not found in dut, it should satisfy rule "iocsrCtrl_singlestep"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_addr" is not found in dut, it should satisfy rule "iofpRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_hold" is not found in dut, it should satisfy rule "iofpRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_addr" is not found in dut, it should satisfy rule "iofpRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_hold" is not found in dut, it should satisfy rule "iofpRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_addr" is not found in dut, it should satisfy rule "iofpRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_hold" is not found in dut, it should satisfy rule "iofpRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_addr" is not found in dut, it should satisfy rule "iofpRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_hold" is not found in dut, it should satisfy rule "iofpRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_addr" is not found in dut, it should satisfy rule "iofpRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_hold" is not found in dut, it should satisfy rule "iofpRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_addr" is not found in dut, it should satisfy rule "iofpRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_hold" is not found in dut, it should satisfy rule "iofpRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_addr" is not found in dut, it should satisfy rule "iofpRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_hold" is not found in dut, it should satisfy rule "iofpRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_addr" is not found in dut, it should satisfy rule "iofpRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_hold" is not found in dut, it should satisfy rule "iofpRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_addr" is not found in dut, it should satisfy rule "iofpRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_hold" is not found in dut, it should satisfy rule "iofpRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_addr" is not found in dut, it should satisfy rule "iofpRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_hold" is not found in dut, it should satisfy rule "iofpRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_addr" is not found in dut, it should satisfy rule "iofpRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_hold" is not found in dut, it should satisfy rule "iofpRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_addr" is not found in dut, it should satisfy rule "iofpRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_hold" is not found in dut, it should satisfy rule "iofpRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_addr" is not found in dut, it should satisfy rule "iofpRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_hold" is not found in dut, it should satisfy rule "iofpRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_addr" is not found in dut, it should satisfy rule "iofpRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_hold" is not found in dut, it should satisfy rule "iofpRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_addr" is not found in dut, it should satisfy rule "iofpRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_hold" is not found in dut, it should satisfy rule "iofpRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_addr" is not found in dut, it should satisfy rule "iofpRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_hold" is not found in dut, it should satisfy rule "iofpRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_addr" is not found in dut, it should satisfy rule "iofpRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_hold" is not found in dut, it should satisfy rule "iofpRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_addr" is not found in dut, it should satisfy rule "iofpRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_hold" is not found in dut, it should satisfy rule "iofpRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_frm" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_frm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_fsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceGVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceGVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceVVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceVVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_vsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_vsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_special_cboI2F" is not found in dut, it should satisfy rule "iofromCSR_special_cboI2F"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hfence" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hfence"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_hasVsetvl" is not found in dut, it should satisfy rule "iofromRob_commitVType_hasVsetvl"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vma" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vta" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_valid" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_isResumeVType" is not found in dut, it should satisfy rule "iofromRob_isResumeVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkToArchVType" is not found in dut, it should satisfy rule "iofromRob_walkToArchVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vma" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vta" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_valid" is not found in dut, it should satisfy rule "iofromRob_walkVType_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_0" is not found in dut, it should satisfy rule "iofusion_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_1" is not found in dut, it should satisfy rule "iofusion_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_2" is not found in dut, it should satisfy rule "iofusion_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_3" is not found in dut, it should satisfy rule "iofusion_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_4" is not found in dut, it should satisfy rule "iofusion_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_foldpc" is not found in dut, it should satisfy rule "ioin_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_instr" is not found in dut, it should satisfy rule "ioin_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_0_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_trigger" is not found in dut, it should satisfy rule "ioin_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_ready" is not found in dut, it should satisfy rule "ioin_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_valid" is not found in dut, it should satisfy rule "ioin_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_foldpc" is not found in dut, it should satisfy rule "ioin_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_instr" is not found in dut, it should satisfy rule "ioin_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_1_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_trigger" is not found in dut, it should satisfy rule "ioin_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_ready" is not found in dut, it should satisfy rule "ioin_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_valid" is not found in dut, it should satisfy rule "ioin_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_foldpc" is not found in dut, it should satisfy rule "ioin_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_instr" is not found in dut, it should satisfy rule "ioin_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_2_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_trigger" is not found in dut, it should satisfy rule "ioin_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_ready" is not found in dut, it should satisfy rule "ioin_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_valid" is not found in dut, it should satisfy rule "ioin_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_foldpc" is not found in dut, it should satisfy rule "ioin_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_instr" is not found in dut, it should satisfy rule "ioin_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_3_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_trigger" is not found in dut, it should satisfy rule "ioin_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_ready" is not found in dut, it should satisfy rule "ioin_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_valid" is not found in dut, it should satisfy rule "ioin_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_foldpc" is not found in dut, it should satisfy rule "ioin_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_instr" is not found in dut, it should satisfy rule "ioin_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_4_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_trigger" is not found in dut, it should satisfy rule "ioin_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_ready" is not found in dut, it should satisfy rule "ioin_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_valid" is not found in dut, it should satisfy rule "ioin_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_foldpc" is not found in dut, it should satisfy rule "ioin_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_instr" is not found in dut, it should satisfy rule "ioin_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_5_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_trigger" is not found in dut, it should satisfy rule "ioin_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_ready" is not found in dut, it should satisfy rule "ioin_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_valid" is not found in dut, it should satisfy rule "ioin_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_addr" is not found in dut, it should satisfy rule "iointRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_hold" is not found in dut, it should satisfy rule "iointRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_addr" is not found in dut, it should satisfy rule "iointRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_hold" is not found in dut, it should satisfy rule "iointRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_addr" is not found in dut, it should satisfy rule "iointRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_hold" is not found in dut, it should satisfy rule "iointRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_addr" is not found in dut, it should satisfy rule "iointRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_hold" is not found in dut, it should satisfy rule "iointRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_addr" is not found in dut, it should satisfy rule "iointRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_hold" is not found in dut, it should satisfy rule "iointRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_addr" is not found in dut, it should satisfy rule "iointRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_hold" is not found in dut, it should satisfy rule "iointRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_addr" is not found in dut, it should satisfy rule "iointRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_hold" is not found in dut, it should satisfy rule "iointRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_addr" is not found in dut, it should satisfy rule "iointRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_hold" is not found in dut, it should satisfy rule "iointRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_addr" is not found in dut, it should satisfy rule "iointRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_hold" is not found in dut, it should satisfy rule "iointRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_addr" is not found in dut, it should satisfy rule "iointRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_hold" is not found in dut, it should satisfy rule "iointRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_addr" is not found in dut, it should satisfy rule "iointRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_hold" is not found in dut, it should satisfy rule "iointRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_addr" is not found in dut, it should satisfy rule "iointRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_hold" is not found in dut, it should satisfy rule "iointRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_0_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_0_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_commitType" is not found in dut, it should satisfy rule "ioout_0_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_firstUop" is not found in dut, it should satisfy rule "ioout_0_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_0_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_foldpc" is not found in dut, it should satisfy rule "ioout_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpWen" is not found in dut, it should satisfy rule "ioout_0_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_0_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuType" is not found in dut, it should satisfy rule "ioout_0_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_imm" is not found in dut, it should satisfy rule "ioout_0_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_instr" is not found in dut, it should satisfy rule "ioout_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isMove" is not found in dut, it should satisfy rule "ioout_0_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isVset" is not found in dut, it should satisfy rule "ioout_0_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_0_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lastUop" is not found in dut, it should satisfy rule "ioout_0_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ldest" is not found in dut, it should satisfy rule "ioout_0_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_numWB" is not found in dut, it should satisfy rule "ioout_0_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_rfWen" is not found in dut, it should satisfy rule "ioout_0_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_selImm" is not found in dut, it should satisfy rule "ioout_0_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_trigger" is not found in dut, it should satisfy rule "ioout_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_0_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_0_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_0_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vecWen" is not found in dut, it should satisfy rule "ioout_0_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlWen" is not found in dut, it should satisfy rule "ioout_0_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_0_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_waitForward" is not found in dut, it should satisfy rule "ioout_0_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_wfflags" is not found in dut, it should satisfy rule "ioout_0_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_ready" is not found in dut, it should satisfy rule "ioout_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_valid" is not found in dut, it should satisfy rule "ioout_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_1_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_1_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_commitType" is not found in dut, it should satisfy rule "ioout_1_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_firstUop" is not found in dut, it should satisfy rule "ioout_1_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_1_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_foldpc" is not found in dut, it should satisfy rule "ioout_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpWen" is not found in dut, it should satisfy rule "ioout_1_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_1_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuType" is not found in dut, it should satisfy rule "ioout_1_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_imm" is not found in dut, it should satisfy rule "ioout_1_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_instr" is not found in dut, it should satisfy rule "ioout_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isMove" is not found in dut, it should satisfy rule "ioout_1_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isVset" is not found in dut, it should satisfy rule "ioout_1_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_1_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lastUop" is not found in dut, it should satisfy rule "ioout_1_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ldest" is not found in dut, it should satisfy rule "ioout_1_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_numWB" is not found in dut, it should satisfy rule "ioout_1_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_rfWen" is not found in dut, it should satisfy rule "ioout_1_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_selImm" is not found in dut, it should satisfy rule "ioout_1_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_trigger" is not found in dut, it should satisfy rule "ioout_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_1_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_1_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_1_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vecWen" is not found in dut, it should satisfy rule "ioout_1_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlWen" is not found in dut, it should satisfy rule "ioout_1_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_1_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_waitForward" is not found in dut, it should satisfy rule "ioout_1_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_wfflags" is not found in dut, it should satisfy rule "ioout_1_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_ready" is not found in dut, it should satisfy rule "ioout_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_valid" is not found in dut, it should satisfy rule "ioout_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_2_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_2_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_commitType" is not found in dut, it should satisfy rule "ioout_2_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_firstUop" is not found in dut, it should satisfy rule "ioout_2_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_2_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_foldpc" is not found in dut, it should satisfy rule "ioout_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpWen" is not found in dut, it should satisfy rule "ioout_2_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_2_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuType" is not found in dut, it should satisfy rule "ioout_2_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_imm" is not found in dut, it should satisfy rule "ioout_2_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_instr" is not found in dut, it should satisfy rule "ioout_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isMove" is not found in dut, it should satisfy rule "ioout_2_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isVset" is not found in dut, it should satisfy rule "ioout_2_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_2_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lastUop" is not found in dut, it should satisfy rule "ioout_2_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ldest" is not found in dut, it should satisfy rule "ioout_2_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_numWB" is not found in dut, it should satisfy rule "ioout_2_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_rfWen" is not found in dut, it should satisfy rule "ioout_2_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_selImm" is not found in dut, it should satisfy rule "ioout_2_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_trigger" is not found in dut, it should satisfy rule "ioout_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_2_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_2_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_2_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vecWen" is not found in dut, it should satisfy rule "ioout_2_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlWen" is not found in dut, it should satisfy rule "ioout_2_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_2_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_waitForward" is not found in dut, it should satisfy rule "ioout_2_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_wfflags" is not found in dut, it should satisfy rule "ioout_2_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_ready" is not found in dut, it should satisfy rule "ioout_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_valid" is not found in dut, it should satisfy rule "ioout_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_3_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_3_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_commitType" is not found in dut, it should satisfy rule "ioout_3_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_firstUop" is not found in dut, it should satisfy rule "ioout_3_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_3_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_foldpc" is not found in dut, it should satisfy rule "ioout_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpWen" is not found in dut, it should satisfy rule "ioout_3_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_3_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuType" is not found in dut, it should satisfy rule "ioout_3_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_imm" is not found in dut, it should satisfy rule "ioout_3_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_instr" is not found in dut, it should satisfy rule "ioout_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isMove" is not found in dut, it should satisfy rule "ioout_3_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isVset" is not found in dut, it should satisfy rule "ioout_3_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_3_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lastUop" is not found in dut, it should satisfy rule "ioout_3_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ldest" is not found in dut, it should satisfy rule "ioout_3_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_numWB" is not found in dut, it should satisfy rule "ioout_3_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_rfWen" is not found in dut, it should satisfy rule "ioout_3_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_selImm" is not found in dut, it should satisfy rule "ioout_3_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_trigger" is not found in dut, it should satisfy rule "ioout_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_3_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_3_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_3_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vecWen" is not found in dut, it should satisfy rule "ioout_3_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlWen" is not found in dut, it should satisfy rule "ioout_3_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_3_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_waitForward" is not found in dut, it should satisfy rule "ioout_3_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_wfflags" is not found in dut, it should satisfy rule "ioout_3_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_ready" is not found in dut, it should satisfy rule "ioout_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_valid" is not found in dut, it should satisfy rule "ioout_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_4_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_4_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_commitType" is not found in dut, it should satisfy rule "ioout_4_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_firstUop" is not found in dut, it should satisfy rule "ioout_4_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_4_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_foldpc" is not found in dut, it should satisfy rule "ioout_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpWen" is not found in dut, it should satisfy rule "ioout_4_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_4_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuType" is not found in dut, it should satisfy rule "ioout_4_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_imm" is not found in dut, it should satisfy rule "ioout_4_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_instr" is not found in dut, it should satisfy rule "ioout_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isMove" is not found in dut, it should satisfy rule "ioout_4_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isVset" is not found in dut, it should satisfy rule "ioout_4_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_4_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lastUop" is not found in dut, it should satisfy rule "ioout_4_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ldest" is not found in dut, it should satisfy rule "ioout_4_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_numWB" is not found in dut, it should satisfy rule "ioout_4_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_rfWen" is not found in dut, it should satisfy rule "ioout_4_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_selImm" is not found in dut, it should satisfy rule "ioout_4_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_trigger" is not found in dut, it should satisfy rule "ioout_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_4_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_4_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_4_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vecWen" is not found in dut, it should satisfy rule "ioout_4_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlWen" is not found in dut, it should satisfy rule "ioout_4_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_4_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_waitForward" is not found in dut, it should satisfy rule "ioout_4_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_wfflags" is not found in dut, it should satisfy rule "ioout_4_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_ready" is not found in dut, it should satisfy rule "ioout_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_valid" is not found in dut, it should satisfy rule "ioout_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_5_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_5_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_commitType" is not found in dut, it should satisfy rule "ioout_5_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_firstUop" is not found in dut, it should satisfy rule "ioout_5_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_5_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_foldpc" is not found in dut, it should satisfy rule "ioout_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpWen" is not found in dut, it should satisfy rule "ioout_5_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_5_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuType" is not found in dut, it should satisfy rule "ioout_5_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_imm" is not found in dut, it should satisfy rule "ioout_5_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_instr" is not found in dut, it should satisfy rule "ioout_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isMove" is not found in dut, it should satisfy rule "ioout_5_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isVset" is not found in dut, it should satisfy rule "ioout_5_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_5_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lastUop" is not found in dut, it should satisfy rule "ioout_5_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ldest" is not found in dut, it should satisfy rule "ioout_5_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_numWB" is not found in dut, it should satisfy rule "ioout_5_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_rfWen" is not found in dut, it should satisfy rule "ioout_5_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_selImm" is not found in dut, it should satisfy rule "ioout_5_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_trigger" is not found in dut, it should satisfy rule "ioout_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_5_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_5_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_5_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vecWen" is not found in dut, it should satisfy rule "ioout_5_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlWen" is not found in dut, it should satisfy rule "ioout_5_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_5_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_waitForward" is not found in dut, it should satisfy rule "ioout_5_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_wfflags" is not found in dut, it should satisfy rule "ioout_5_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_ready" is not found in dut, it should satisfy rule "ioout_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_valid" is not found in dut, it should satisfy rule "ioout_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_0_value" is not found in dut, it should satisfy rule "ioperf_0_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_1_value" is not found in dut, it should satisfy rule "ioperf_1_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_2_value" is not found in dut, it should satisfy rule "ioperf_2_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_3_value" is not found in dut, it should satisfy rule "ioperf_3_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "redirect" is not found in dut, it should satisfy rule "ioredirect"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqOffset" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_value" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_instr" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_valid" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_addr" is not found in dut, it should satisfy rule "iovecRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_hold" is not found in dut, it should satisfy rule "iovecRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_addr" is not found in dut, it should satisfy rule "iovecRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_hold" is not found in dut, it should satisfy rule "iovecRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_addr" is not found in dut, it should satisfy rule "iovecRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_hold" is not found in dut, it should satisfy rule "iovecRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_addr" is not found in dut, it should satisfy rule "iovecRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_hold" is not found in dut, it should satisfy rule "iovecRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_addr" is not found in dut, it should satisfy rule "iovecRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_hold" is not found in dut, it should satisfy rule "iovecRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_addr" is not found in dut, it should satisfy rule "iovecRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_hold" is not found in dut, it should satisfy rule "iovecRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_addr" is not found in dut, it should satisfy rule "iovecRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_hold" is not found in dut, it should satisfy rule "iovecRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_addr" is not found in dut, it should satisfy rule "iovecRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_hold" is not found in dut, it should satisfy rule "iovecRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_addr" is not found in dut, it should satisfy rule "iovecRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_hold" is not found in dut, it should satisfy rule "iovecRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_addr" is not found in dut, it should satisfy rule "iovecRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_hold" is not found in dut, it should satisfy rule "iovecRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_addr" is not found in dut, it should satisfy rule "iovecRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_hold" is not found in dut, it should satisfy rule "iovecRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_addr" is not found in dut, it should satisfy rule "iovecRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_hold" is not found in dut, it should satisfy rule "iovecRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_addr" is not found in dut, it should satisfy rule "iovecRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_hold" is not found in dut, it should satisfy rule "iovecRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_addr" is not found in dut, it should satisfy rule "iovecRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_hold" is not found in dut, it should satisfy rule "iovecRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_addr" is not found in dut, it should satisfy rule "iovecRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_hold" is not found in dut, it should satisfy rule "iovecRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_addr" is not found in dut, it should satisfy rule "iovecRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_hold" is not found in dut, it should satisfy rule "iovecRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_addr" is not found in dut, it should satisfy rule "iovecRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_hold" is not found in dut, it should satisfy rule "iovecRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_addr" is not found in dut, it should satisfy rule "iovecRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_hold" is not found in dut, it should satisfy rule "iovecRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_illegal" is not found in dut, it should satisfy rule "iovsetvlVType_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vlmul" is not found in dut, it should satisfy rule "iovsetvlVType_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vma" is not found in dut, it should satisfy rule "iovsetvlVType_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vsew" is not found in dut, it should satisfy rule "iovsetvlVType_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vta" is not found in dut, it should satisfy rule "iovsetvlVType_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vstart" is not found in dut, it should satisfy rule "iovstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "iofsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ioill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "ioin"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "ioout_bits"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "csrCtrl_singlestep" is not found in dut, it should satisfy rule "iocsrCtrl_singlestep"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_addr" is not found in dut, it should satisfy rule "iofpRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_hold" is not found in dut, it should satisfy rule "iofpRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_addr" is not found in dut, it should satisfy rule "iofpRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_hold" is not found in dut, it should satisfy rule "iofpRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_addr" is not found in dut, it should satisfy rule "iofpRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_hold" is not found in dut, it should satisfy rule "iofpRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_addr" is not found in dut, it should satisfy rule "iofpRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_hold" is not found in dut, it should satisfy rule "iofpRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_addr" is not found in dut, it should satisfy rule "iofpRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_hold" is not found in dut, it should satisfy rule "iofpRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_addr" is not found in dut, it should satisfy rule "iofpRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_hold" is not found in dut, it should satisfy rule "iofpRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_addr" is not found in dut, it should satisfy rule "iofpRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_hold" is not found in dut, it should satisfy rule "iofpRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_addr" is not found in dut, it should satisfy rule "iofpRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_hold" is not found in dut, it should satisfy rule "iofpRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_addr" is not found in dut, it should satisfy rule "iofpRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_hold" is not found in dut, it should satisfy rule "iofpRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_addr" is not found in dut, it should satisfy rule "iofpRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_hold" is not found in dut, it should satisfy rule "iofpRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_addr" is not found in dut, it should satisfy rule "iofpRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_hold" is not found in dut, it should satisfy rule "iofpRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_addr" is not found in dut, it should satisfy rule "iofpRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_hold" is not found in dut, it should satisfy rule "iofpRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_addr" is not found in dut, it should satisfy rule "iofpRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_hold" is not found in dut, it should satisfy rule "iofpRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_addr" is not found in dut, it should satisfy rule "iofpRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_hold" is not found in dut, it should satisfy rule "iofpRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_addr" is not found in dut, it should satisfy rule "iofpRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_hold" is not found in dut, it should satisfy rule "iofpRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_addr" is not found in dut, it should satisfy rule "iofpRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_hold" is not found in dut, it should satisfy rule "iofpRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_addr" is not found in dut, it should satisfy rule "iofpRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_hold" is not found in dut, it should satisfy rule "iofpRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_addr" is not found in dut, it should satisfy rule "iofpRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_hold" is not found in dut, it should satisfy rule "iofpRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_frm" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_frm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_fsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceGVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceGVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceVVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceVVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_vsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_vsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_special_cboI2F" is not found in dut, it should satisfy rule "iofromCSR_special_cboI2F"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hfence" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hfence"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_hasVsetvl" is not found in dut, it should satisfy rule "iofromRob_commitVType_hasVsetvl"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vma" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vta" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_valid" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_isResumeVType" is not found in dut, it should satisfy rule "iofromRob_isResumeVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkToArchVType" is not found in dut, it should satisfy rule "iofromRob_walkToArchVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vma" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vta" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_valid" is not found in dut, it should satisfy rule "iofromRob_walkVType_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_0" is not found in dut, it should satisfy rule "iofusion_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_1" is not found in dut, it should satisfy rule "iofusion_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_2" is not found in dut, it should satisfy rule "iofusion_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_3" is not found in dut, it should satisfy rule "iofusion_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_4" is not found in dut, it should satisfy rule "iofusion_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_foldpc" is not found in dut, it should satisfy rule "ioin_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_instr" is not found in dut, it should satisfy rule "ioin_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_0_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_trigger" is not found in dut, it should satisfy rule "ioin_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_ready" is not found in dut, it should satisfy rule "ioin_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_valid" is not found in dut, it should satisfy rule "ioin_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_foldpc" is not found in dut, it should satisfy rule "ioin_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_instr" is not found in dut, it should satisfy rule "ioin_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_1_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_trigger" is not found in dut, it should satisfy rule "ioin_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_ready" is not found in dut, it should satisfy rule "ioin_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_valid" is not found in dut, it should satisfy rule "ioin_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_foldpc" is not found in dut, it should satisfy rule "ioin_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_instr" is not found in dut, it should satisfy rule "ioin_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_2_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_trigger" is not found in dut, it should satisfy rule "ioin_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_ready" is not found in dut, it should satisfy rule "ioin_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_valid" is not found in dut, it should satisfy rule "ioin_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_foldpc" is not found in dut, it should satisfy rule "ioin_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_instr" is not found in dut, it should satisfy rule "ioin_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_3_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_trigger" is not found in dut, it should satisfy rule "ioin_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_ready" is not found in dut, it should satisfy rule "ioin_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_valid" is not found in dut, it should satisfy rule "ioin_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_foldpc" is not found in dut, it should satisfy rule "ioin_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_instr" is not found in dut, it should satisfy rule "ioin_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_4_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_trigger" is not found in dut, it should satisfy rule "ioin_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_ready" is not found in dut, it should satisfy rule "ioin_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_valid" is not found in dut, it should satisfy rule "ioin_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_foldpc" is not found in dut, it should satisfy rule "ioin_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_instr" is not found in dut, it should satisfy rule "ioin_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_5_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_trigger" is not found in dut, it should satisfy rule "ioin_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_ready" is not found in dut, it should satisfy rule "ioin_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_valid" is not found in dut, it should satisfy rule "ioin_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_addr" is not found in dut, it should satisfy rule "iointRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_hold" is not found in dut, it should satisfy rule "iointRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_addr" is not found in dut, it should satisfy rule "iointRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_hold" is not found in dut, it should satisfy rule "iointRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_addr" is not found in dut, it should satisfy rule "iointRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_hold" is not found in dut, it should satisfy rule "iointRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_addr" is not found in dut, it should satisfy rule "iointRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_hold" is not found in dut, it should satisfy rule "iointRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_addr" is not found in dut, it should satisfy rule "iointRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_hold" is not found in dut, it should satisfy rule "iointRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_addr" is not found in dut, it should satisfy rule "iointRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_hold" is not found in dut, it should satisfy rule "iointRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_addr" is not found in dut, it should satisfy rule "iointRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_hold" is not found in dut, it should satisfy rule "iointRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_addr" is not found in dut, it should satisfy rule "iointRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_hold" is not found in dut, it should satisfy rule "iointRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_addr" is not found in dut, it should satisfy rule "iointRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_hold" is not found in dut, it should satisfy rule "iointRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_addr" is not found in dut, it should satisfy rule "iointRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_hold" is not found in dut, it should satisfy rule "iointRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_addr" is not found in dut, it should satisfy rule "iointRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_hold" is not found in dut, it should satisfy rule "iointRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_addr" is not found in dut, it should satisfy rule "iointRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_hold" is not found in dut, it should satisfy rule "iointRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_0_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_0_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_commitType" is not found in dut, it should satisfy rule "ioout_0_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_firstUop" is not found in dut, it should satisfy rule "ioout_0_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_0_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_foldpc" is not found in dut, it should satisfy rule "ioout_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpWen" is not found in dut, it should satisfy rule "ioout_0_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_0_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuType" is not found in dut, it should satisfy rule "ioout_0_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_imm" is not found in dut, it should satisfy rule "ioout_0_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_instr" is not found in dut, it should satisfy rule "ioout_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isMove" is not found in dut, it should satisfy rule "ioout_0_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isVset" is not found in dut, it should satisfy rule "ioout_0_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_0_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lastUop" is not found in dut, it should satisfy rule "ioout_0_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ldest" is not found in dut, it should satisfy rule "ioout_0_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_numWB" is not found in dut, it should satisfy rule "ioout_0_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_rfWen" is not found in dut, it should satisfy rule "ioout_0_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_selImm" is not found in dut, it should satisfy rule "ioout_0_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_trigger" is not found in dut, it should satisfy rule "ioout_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_0_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_0_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_0_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vecWen" is not found in dut, it should satisfy rule "ioout_0_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlWen" is not found in dut, it should satisfy rule "ioout_0_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_0_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_waitForward" is not found in dut, it should satisfy rule "ioout_0_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_wfflags" is not found in dut, it should satisfy rule "ioout_0_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_ready" is not found in dut, it should satisfy rule "ioout_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_valid" is not found in dut, it should satisfy rule "ioout_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_1_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_1_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_commitType" is not found in dut, it should satisfy rule "ioout_1_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_firstUop" is not found in dut, it should satisfy rule "ioout_1_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_1_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_foldpc" is not found in dut, it should satisfy rule "ioout_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpWen" is not found in dut, it should satisfy rule "ioout_1_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_1_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuType" is not found in dut, it should satisfy rule "ioout_1_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_imm" is not found in dut, it should satisfy rule "ioout_1_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_instr" is not found in dut, it should satisfy rule "ioout_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isMove" is not found in dut, it should satisfy rule "ioout_1_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isVset" is not found in dut, it should satisfy rule "ioout_1_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_1_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lastUop" is not found in dut, it should satisfy rule "ioout_1_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ldest" is not found in dut, it should satisfy rule "ioout_1_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_numWB" is not found in dut, it should satisfy rule "ioout_1_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_rfWen" is not found in dut, it should satisfy rule "ioout_1_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_selImm" is not found in dut, it should satisfy rule "ioout_1_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_trigger" is not found in dut, it should satisfy rule "ioout_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_1_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_1_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_1_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vecWen" is not found in dut, it should satisfy rule "ioout_1_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlWen" is not found in dut, it should satisfy rule "ioout_1_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_1_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_waitForward" is not found in dut, it should satisfy rule "ioout_1_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_wfflags" is not found in dut, it should satisfy rule "ioout_1_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_ready" is not found in dut, it should satisfy rule "ioout_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_valid" is not found in dut, it should satisfy rule "ioout_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_2_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_2_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_commitType" is not found in dut, it should satisfy rule "ioout_2_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_firstUop" is not found in dut, it should satisfy rule "ioout_2_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_2_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_foldpc" is not found in dut, it should satisfy rule "ioout_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpWen" is not found in dut, it should satisfy rule "ioout_2_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_2_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuType" is not found in dut, it should satisfy rule "ioout_2_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_imm" is not found in dut, it should satisfy rule "ioout_2_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_instr" is not found in dut, it should satisfy rule "ioout_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isMove" is not found in dut, it should satisfy rule "ioout_2_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isVset" is not found in dut, it should satisfy rule "ioout_2_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_2_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lastUop" is not found in dut, it should satisfy rule "ioout_2_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ldest" is not found in dut, it should satisfy rule "ioout_2_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_numWB" is not found in dut, it should satisfy rule "ioout_2_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_rfWen" is not found in dut, it should satisfy rule "ioout_2_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_selImm" is not found in dut, it should satisfy rule "ioout_2_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_trigger" is not found in dut, it should satisfy rule "ioout_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_2_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_2_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_2_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vecWen" is not found in dut, it should satisfy rule "ioout_2_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlWen" is not found in dut, it should satisfy rule "ioout_2_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_2_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_waitForward" is not found in dut, it should satisfy rule "ioout_2_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_wfflags" is not found in dut, it should satisfy rule "ioout_2_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_ready" is not found in dut, it should satisfy rule "ioout_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_valid" is not found in dut, it should satisfy rule "ioout_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_3_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_3_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_commitType" is not found in dut, it should satisfy rule "ioout_3_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_firstUop" is not found in dut, it should satisfy rule "ioout_3_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_3_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_foldpc" is not found in dut, it should satisfy rule "ioout_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpWen" is not found in dut, it should satisfy rule "ioout_3_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_3_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuType" is not found in dut, it should satisfy rule "ioout_3_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_imm" is not found in dut, it should satisfy rule "ioout_3_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_instr" is not found in dut, it should satisfy rule "ioout_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isMove" is not found in dut, it should satisfy rule "ioout_3_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isVset" is not found in dut, it should satisfy rule "ioout_3_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_3_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lastUop" is not found in dut, it should satisfy rule "ioout_3_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ldest" is not found in dut, it should satisfy rule "ioout_3_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_numWB" is not found in dut, it should satisfy rule "ioout_3_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_rfWen" is not found in dut, it should satisfy rule "ioout_3_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_selImm" is not found in dut, it should satisfy rule "ioout_3_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_trigger" is not found in dut, it should satisfy rule "ioout_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_3_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_3_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_3_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vecWen" is not found in dut, it should satisfy rule "ioout_3_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlWen" is not found in dut, it should satisfy rule "ioout_3_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_3_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_waitForward" is not found in dut, it should satisfy rule "ioout_3_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_wfflags" is not found in dut, it should satisfy rule "ioout_3_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_ready" is not found in dut, it should satisfy rule "ioout_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_valid" is not found in dut, it should satisfy rule "ioout_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_4_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_4_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_commitType" is not found in dut, it should satisfy rule "ioout_4_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_firstUop" is not found in dut, it should satisfy rule "ioout_4_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_4_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_foldpc" is not found in dut, it should satisfy rule "ioout_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpWen" is not found in dut, it should satisfy rule "ioout_4_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_4_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuType" is not found in dut, it should satisfy rule "ioout_4_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_imm" is not found in dut, it should satisfy rule "ioout_4_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_instr" is not found in dut, it should satisfy rule "ioout_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isMove" is not found in dut, it should satisfy rule "ioout_4_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isVset" is not found in dut, it should satisfy rule "ioout_4_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_4_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lastUop" is not found in dut, it should satisfy rule "ioout_4_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ldest" is not found in dut, it should satisfy rule "ioout_4_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_numWB" is not found in dut, it should satisfy rule "ioout_4_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_rfWen" is not found in dut, it should satisfy rule "ioout_4_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_selImm" is not found in dut, it should satisfy rule "ioout_4_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_trigger" is not found in dut, it should satisfy rule "ioout_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_4_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_4_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_4_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vecWen" is not found in dut, it should satisfy rule "ioout_4_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlWen" is not found in dut, it should satisfy rule "ioout_4_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_4_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_waitForward" is not found in dut, it should satisfy rule "ioout_4_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_wfflags" is not found in dut, it should satisfy rule "ioout_4_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_ready" is not found in dut, it should satisfy rule "ioout_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_valid" is not found in dut, it should satisfy rule "ioout_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_5_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_5_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_commitType" is not found in dut, it should satisfy rule "ioout_5_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_firstUop" is not found in dut, it should satisfy rule "ioout_5_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_5_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_foldpc" is not found in dut, it should satisfy rule "ioout_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpWen" is not found in dut, it should satisfy rule "ioout_5_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_5_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuType" is not found in dut, it should satisfy rule "ioout_5_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_imm" is not found in dut, it should satisfy rule "ioout_5_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_instr" is not found in dut, it should satisfy rule "ioout_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isMove" is not found in dut, it should satisfy rule "ioout_5_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isVset" is not found in dut, it should satisfy rule "ioout_5_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_5_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lastUop" is not found in dut, it should satisfy rule "ioout_5_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ldest" is not found in dut, it should satisfy rule "ioout_5_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_numWB" is not found in dut, it should satisfy rule "ioout_5_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_rfWen" is not found in dut, it should satisfy rule "ioout_5_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_selImm" is not found in dut, it should satisfy rule "ioout_5_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_trigger" is not found in dut, it should satisfy rule "ioout_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_5_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_5_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_5_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vecWen" is not found in dut, it should satisfy rule "ioout_5_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlWen" is not found in dut, it should satisfy rule "ioout_5_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_5_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_waitForward" is not found in dut, it should satisfy rule "ioout_5_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_wfflags" is not found in dut, it should satisfy rule "ioout_5_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_ready" is not found in dut, it should satisfy rule "ioout_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_valid" is not found in dut, it should satisfy rule "ioout_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_0_value" is not found in dut, it should satisfy rule "ioperf_0_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_1_value" is not found in dut, it should satisfy rule "ioperf_1_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_2_value" is not found in dut, it should satisfy rule "ioperf_2_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_3_value" is not found in dut, it should satisfy rule "ioperf_3_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "redirect" is not found in dut, it should satisfy rule "ioredirect"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqOffset" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_value" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_instr" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_valid" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_addr" is not found in dut, it should satisfy rule "iovecRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_hold" is not found in dut, it should satisfy rule "iovecRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_addr" is not found in dut, it should satisfy rule "iovecRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_hold" is not found in dut, it should satisfy rule "iovecRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_addr" is not found in dut, it should satisfy rule "iovecRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_hold" is not found in dut, it should satisfy rule "iovecRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_addr" is not found in dut, it should satisfy rule "iovecRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_hold" is not found in dut, it should satisfy rule "iovecRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_addr" is not found in dut, it should satisfy rule "iovecRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_hold" is not found in dut, it should satisfy rule "iovecRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_addr" is not found in dut, it should satisfy rule "iovecRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_hold" is not found in dut, it should satisfy rule "iovecRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_addr" is not found in dut, it should satisfy rule "iovecRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_hold" is not found in dut, it should satisfy rule "iovecRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_addr" is not found in dut, it should satisfy rule "iovecRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_hold" is not found in dut, it should satisfy rule "iovecRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_addr" is not found in dut, it should satisfy rule "iovecRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_hold" is not found in dut, it should satisfy rule "iovecRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_addr" is not found in dut, it should satisfy rule "iovecRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_hold" is not found in dut, it should satisfy rule "iovecRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_addr" is not found in dut, it should satisfy rule "iovecRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_hold" is not found in dut, it should satisfy rule "iovecRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_addr" is not found in dut, it should satisfy rule "iovecRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_hold" is not found in dut, it should satisfy rule "iovecRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_addr" is not found in dut, it should satisfy rule "iovecRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_hold" is not found in dut, it should satisfy rule "iovecRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_addr" is not found in dut, it should satisfy rule "iovecRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_hold" is not found in dut, it should satisfy rule "iovecRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_addr" is not found in dut, it should satisfy rule "iovecRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_hold" is not found in dut, it should satisfy rule "iovecRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_addr" is not found in dut, it should satisfy rule "iovecRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_hold" is not found in dut, it should satisfy rule "iovecRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_addr" is not found in dut, it should satisfy rule "iovecRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_hold" is not found in dut, it should satisfy rule "iovecRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_addr" is not found in dut, it should satisfy rule "iovecRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_hold" is not found in dut, it should satisfy rule "iovecRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_illegal" is not found in dut, it should satisfy rule "iovsetvlVType_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vlmul" is not found in dut, it should satisfy rule "iovsetvlVType_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vma" is not found in dut, it should satisfy rule "iovsetvlVType_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vsew" is not found in dut, it should satisfy rule "iovsetvlVType_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vta" is not found in dut, it should satisfy rule "iovsetvlVType_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vstart" is not found in dut, it should satisfy rule "iovstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "iofsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ioill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "ioin"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "ioout_bits"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "csrCtrl_singlestep" is not found in dut, it should satisfy rule "iocsrCtrl_singlestep"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_addr" is not found in dut, it should satisfy rule "iofpRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_hold" is not found in dut, it should satisfy rule "iofpRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_addr" is not found in dut, it should satisfy rule "iofpRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_hold" is not found in dut, it should satisfy rule "iofpRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_addr" is not found in dut, it should satisfy rule "iofpRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_hold" is not found in dut, it should satisfy rule "iofpRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_addr" is not found in dut, it should satisfy rule "iofpRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_hold" is not found in dut, it should satisfy rule "iofpRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_addr" is not found in dut, it should satisfy rule "iofpRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_hold" is not found in dut, it should satisfy rule "iofpRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_addr" is not found in dut, it should satisfy rule "iofpRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_hold" is not found in dut, it should satisfy rule "iofpRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_addr" is not found in dut, it should satisfy rule "iofpRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_hold" is not found in dut, it should satisfy rule "iofpRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_addr" is not found in dut, it should satisfy rule "iofpRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_hold" is not found in dut, it should satisfy rule "iofpRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_addr" is not found in dut, it should satisfy rule "iofpRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_hold" is not found in dut, it should satisfy rule "iofpRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_addr" is not found in dut, it should satisfy rule "iofpRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_hold" is not found in dut, it should satisfy rule "iofpRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_addr" is not found in dut, it should satisfy rule "iofpRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_hold" is not found in dut, it should satisfy rule "iofpRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_addr" is not found in dut, it should satisfy rule "iofpRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_hold" is not found in dut, it should satisfy rule "iofpRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_addr" is not found in dut, it should satisfy rule "iofpRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_hold" is not found in dut, it should satisfy rule "iofpRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_addr" is not found in dut, it should satisfy rule "iofpRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_hold" is not found in dut, it should satisfy rule "iofpRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_addr" is not found in dut, it should satisfy rule "iofpRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_hold" is not found in dut, it should satisfy rule "iofpRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_addr" is not found in dut, it should satisfy rule "iofpRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_hold" is not found in dut, it should satisfy rule "iofpRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_addr" is not found in dut, it should satisfy rule "iofpRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_hold" is not found in dut, it should satisfy rule "iofpRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_addr" is not found in dut, it should satisfy rule "iofpRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_hold" is not found in dut, it should satisfy rule "iofpRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_frm" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_frm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_fsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceGVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceGVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceVVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceVVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_vsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_vsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_special_cboI2F" is not found in dut, it should satisfy rule "iofromCSR_special_cboI2F"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hfence" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hfence"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_hasVsetvl" is not found in dut, it should satisfy rule "iofromRob_commitVType_hasVsetvl"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vma" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vta" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_valid" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_isResumeVType" is not found in dut, it should satisfy rule "iofromRob_isResumeVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkToArchVType" is not found in dut, it should satisfy rule "iofromRob_walkToArchVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vma" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vta" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_valid" is not found in dut, it should satisfy rule "iofromRob_walkVType_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_0" is not found in dut, it should satisfy rule "iofusion_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_1" is not found in dut, it should satisfy rule "iofusion_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_2" is not found in dut, it should satisfy rule "iofusion_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_3" is not found in dut, it should satisfy rule "iofusion_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_4" is not found in dut, it should satisfy rule "iofusion_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_foldpc" is not found in dut, it should satisfy rule "ioin_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_instr" is not found in dut, it should satisfy rule "ioin_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_0_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_trigger" is not found in dut, it should satisfy rule "ioin_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_ready" is not found in dut, it should satisfy rule "ioin_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_valid" is not found in dut, it should satisfy rule "ioin_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_foldpc" is not found in dut, it should satisfy rule "ioin_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_instr" is not found in dut, it should satisfy rule "ioin_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_1_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_trigger" is not found in dut, it should satisfy rule "ioin_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_ready" is not found in dut, it should satisfy rule "ioin_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_valid" is not found in dut, it should satisfy rule "ioin_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_foldpc" is not found in dut, it should satisfy rule "ioin_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_instr" is not found in dut, it should satisfy rule "ioin_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_2_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_trigger" is not found in dut, it should satisfy rule "ioin_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_ready" is not found in dut, it should satisfy rule "ioin_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_valid" is not found in dut, it should satisfy rule "ioin_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_foldpc" is not found in dut, it should satisfy rule "ioin_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_instr" is not found in dut, it should satisfy rule "ioin_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_3_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_trigger" is not found in dut, it should satisfy rule "ioin_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_ready" is not found in dut, it should satisfy rule "ioin_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_valid" is not found in dut, it should satisfy rule "ioin_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_foldpc" is not found in dut, it should satisfy rule "ioin_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_instr" is not found in dut, it should satisfy rule "ioin_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_4_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_trigger" is not found in dut, it should satisfy rule "ioin_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_ready" is not found in dut, it should satisfy rule "ioin_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_valid" is not found in dut, it should satisfy rule "ioin_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_foldpc" is not found in dut, it should satisfy rule "ioin_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_instr" is not found in dut, it should satisfy rule "ioin_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_5_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_trigger" is not found in dut, it should satisfy rule "ioin_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_ready" is not found in dut, it should satisfy rule "ioin_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_valid" is not found in dut, it should satisfy rule "ioin_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_addr" is not found in dut, it should satisfy rule "iointRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_hold" is not found in dut, it should satisfy rule "iointRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_addr" is not found in dut, it should satisfy rule "iointRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_hold" is not found in dut, it should satisfy rule "iointRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_addr" is not found in dut, it should satisfy rule "iointRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_hold" is not found in dut, it should satisfy rule "iointRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_addr" is not found in dut, it should satisfy rule "iointRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_hold" is not found in dut, it should satisfy rule "iointRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_addr" is not found in dut, it should satisfy rule "iointRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_hold" is not found in dut, it should satisfy rule "iointRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_addr" is not found in dut, it should satisfy rule "iointRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_hold" is not found in dut, it should satisfy rule "iointRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_addr" is not found in dut, it should satisfy rule "iointRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_hold" is not found in dut, it should satisfy rule "iointRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_addr" is not found in dut, it should satisfy rule "iointRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_hold" is not found in dut, it should satisfy rule "iointRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_addr" is not found in dut, it should satisfy rule "iointRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_hold" is not found in dut, it should satisfy rule "iointRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_addr" is not found in dut, it should satisfy rule "iointRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_hold" is not found in dut, it should satisfy rule "iointRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_addr" is not found in dut, it should satisfy rule "iointRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_hold" is not found in dut, it should satisfy rule "iointRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_addr" is not found in dut, it should satisfy rule "iointRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_hold" is not found in dut, it should satisfy rule "iointRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_0_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_0_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_commitType" is not found in dut, it should satisfy rule "ioout_0_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_firstUop" is not found in dut, it should satisfy rule "ioout_0_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_0_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_foldpc" is not found in dut, it should satisfy rule "ioout_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpWen" is not found in dut, it should satisfy rule "ioout_0_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_0_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuType" is not found in dut, it should satisfy rule "ioout_0_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_imm" is not found in dut, it should satisfy rule "ioout_0_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_instr" is not found in dut, it should satisfy rule "ioout_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isMove" is not found in dut, it should satisfy rule "ioout_0_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isVset" is not found in dut, it should satisfy rule "ioout_0_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_0_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lastUop" is not found in dut, it should satisfy rule "ioout_0_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ldest" is not found in dut, it should satisfy rule "ioout_0_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_numWB" is not found in dut, it should satisfy rule "ioout_0_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_rfWen" is not found in dut, it should satisfy rule "ioout_0_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_selImm" is not found in dut, it should satisfy rule "ioout_0_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_trigger" is not found in dut, it should satisfy rule "ioout_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_0_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_0_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_0_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vecWen" is not found in dut, it should satisfy rule "ioout_0_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlWen" is not found in dut, it should satisfy rule "ioout_0_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_0_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_waitForward" is not found in dut, it should satisfy rule "ioout_0_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_wfflags" is not found in dut, it should satisfy rule "ioout_0_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_ready" is not found in dut, it should satisfy rule "ioout_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_valid" is not found in dut, it should satisfy rule "ioout_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_1_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_1_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_commitType" is not found in dut, it should satisfy rule "ioout_1_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_firstUop" is not found in dut, it should satisfy rule "ioout_1_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_1_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_foldpc" is not found in dut, it should satisfy rule "ioout_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpWen" is not found in dut, it should satisfy rule "ioout_1_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_1_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuType" is not found in dut, it should satisfy rule "ioout_1_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_imm" is not found in dut, it should satisfy rule "ioout_1_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_instr" is not found in dut, it should satisfy rule "ioout_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isMove" is not found in dut, it should satisfy rule "ioout_1_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isVset" is not found in dut, it should satisfy rule "ioout_1_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_1_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lastUop" is not found in dut, it should satisfy rule "ioout_1_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ldest" is not found in dut, it should satisfy rule "ioout_1_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_numWB" is not found in dut, it should satisfy rule "ioout_1_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_rfWen" is not found in dut, it should satisfy rule "ioout_1_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_selImm" is not found in dut, it should satisfy rule "ioout_1_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_trigger" is not found in dut, it should satisfy rule "ioout_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_1_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_1_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_1_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vecWen" is not found in dut, it should satisfy rule "ioout_1_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlWen" is not found in dut, it should satisfy rule "ioout_1_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_1_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_waitForward" is not found in dut, it should satisfy rule "ioout_1_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_wfflags" is not found in dut, it should satisfy rule "ioout_1_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_ready" is not found in dut, it should satisfy rule "ioout_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_valid" is not found in dut, it should satisfy rule "ioout_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_2_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_2_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_commitType" is not found in dut, it should satisfy rule "ioout_2_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_firstUop" is not found in dut, it should satisfy rule "ioout_2_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_2_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_foldpc" is not found in dut, it should satisfy rule "ioout_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpWen" is not found in dut, it should satisfy rule "ioout_2_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_2_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuType" is not found in dut, it should satisfy rule "ioout_2_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_imm" is not found in dut, it should satisfy rule "ioout_2_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_instr" is not found in dut, it should satisfy rule "ioout_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isMove" is not found in dut, it should satisfy rule "ioout_2_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isVset" is not found in dut, it should satisfy rule "ioout_2_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_2_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lastUop" is not found in dut, it should satisfy rule "ioout_2_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ldest" is not found in dut, it should satisfy rule "ioout_2_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_numWB" is not found in dut, it should satisfy rule "ioout_2_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_rfWen" is not found in dut, it should satisfy rule "ioout_2_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_selImm" is not found in dut, it should satisfy rule "ioout_2_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_trigger" is not found in dut, it should satisfy rule "ioout_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_2_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_2_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_2_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vecWen" is not found in dut, it should satisfy rule "ioout_2_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlWen" is not found in dut, it should satisfy rule "ioout_2_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_2_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_waitForward" is not found in dut, it should satisfy rule "ioout_2_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_wfflags" is not found in dut, it should satisfy rule "ioout_2_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_ready" is not found in dut, it should satisfy rule "ioout_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_valid" is not found in dut, it should satisfy rule "ioout_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_3_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_3_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_commitType" is not found in dut, it should satisfy rule "ioout_3_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_firstUop" is not found in dut, it should satisfy rule "ioout_3_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_3_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_foldpc" is not found in dut, it should satisfy rule "ioout_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpWen" is not found in dut, it should satisfy rule "ioout_3_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_3_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuType" is not found in dut, it should satisfy rule "ioout_3_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_imm" is not found in dut, it should satisfy rule "ioout_3_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_instr" is not found in dut, it should satisfy rule "ioout_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isMove" is not found in dut, it should satisfy rule "ioout_3_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isVset" is not found in dut, it should satisfy rule "ioout_3_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_3_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lastUop" is not found in dut, it should satisfy rule "ioout_3_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ldest" is not found in dut, it should satisfy rule "ioout_3_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_numWB" is not found in dut, it should satisfy rule "ioout_3_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_rfWen" is not found in dut, it should satisfy rule "ioout_3_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_selImm" is not found in dut, it should satisfy rule "ioout_3_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_trigger" is not found in dut, it should satisfy rule "ioout_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_3_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_3_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_3_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vecWen" is not found in dut, it should satisfy rule "ioout_3_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlWen" is not found in dut, it should satisfy rule "ioout_3_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_3_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_waitForward" is not found in dut, it should satisfy rule "ioout_3_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_wfflags" is not found in dut, it should satisfy rule "ioout_3_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_ready" is not found in dut, it should satisfy rule "ioout_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_valid" is not found in dut, it should satisfy rule "ioout_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_4_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_4_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_commitType" is not found in dut, it should satisfy rule "ioout_4_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_firstUop" is not found in dut, it should satisfy rule "ioout_4_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_4_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_foldpc" is not found in dut, it should satisfy rule "ioout_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpWen" is not found in dut, it should satisfy rule "ioout_4_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_4_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuType" is not found in dut, it should satisfy rule "ioout_4_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_imm" is not found in dut, it should satisfy rule "ioout_4_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_instr" is not found in dut, it should satisfy rule "ioout_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isMove" is not found in dut, it should satisfy rule "ioout_4_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isVset" is not found in dut, it should satisfy rule "ioout_4_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_4_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lastUop" is not found in dut, it should satisfy rule "ioout_4_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ldest" is not found in dut, it should satisfy rule "ioout_4_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_numWB" is not found in dut, it should satisfy rule "ioout_4_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_rfWen" is not found in dut, it should satisfy rule "ioout_4_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_selImm" is not found in dut, it should satisfy rule "ioout_4_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_trigger" is not found in dut, it should satisfy rule "ioout_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_4_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_4_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_4_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vecWen" is not found in dut, it should satisfy rule "ioout_4_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlWen" is not found in dut, it should satisfy rule "ioout_4_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_4_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_waitForward" is not found in dut, it should satisfy rule "ioout_4_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_wfflags" is not found in dut, it should satisfy rule "ioout_4_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_ready" is not found in dut, it should satisfy rule "ioout_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_valid" is not found in dut, it should satisfy rule "ioout_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_5_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_5_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_commitType" is not found in dut, it should satisfy rule "ioout_5_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_firstUop" is not found in dut, it should satisfy rule "ioout_5_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_5_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_foldpc" is not found in dut, it should satisfy rule "ioout_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpWen" is not found in dut, it should satisfy rule "ioout_5_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_5_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuType" is not found in dut, it should satisfy rule "ioout_5_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_imm" is not found in dut, it should satisfy rule "ioout_5_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_instr" is not found in dut, it should satisfy rule "ioout_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isMove" is not found in dut, it should satisfy rule "ioout_5_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isVset" is not found in dut, it should satisfy rule "ioout_5_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_5_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lastUop" is not found in dut, it should satisfy rule "ioout_5_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ldest" is not found in dut, it should satisfy rule "ioout_5_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_numWB" is not found in dut, it should satisfy rule "ioout_5_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_rfWen" is not found in dut, it should satisfy rule "ioout_5_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_selImm" is not found in dut, it should satisfy rule "ioout_5_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_trigger" is not found in dut, it should satisfy rule "ioout_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_5_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_5_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_5_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vecWen" is not found in dut, it should satisfy rule "ioout_5_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlWen" is not found in dut, it should satisfy rule "ioout_5_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_5_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_waitForward" is not found in dut, it should satisfy rule "ioout_5_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_wfflags" is not found in dut, it should satisfy rule "ioout_5_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_ready" is not found in dut, it should satisfy rule "ioout_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_valid" is not found in dut, it should satisfy rule "ioout_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_0_value" is not found in dut, it should satisfy rule "ioperf_0_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_1_value" is not found in dut, it should satisfy rule "ioperf_1_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_2_value" is not found in dut, it should satisfy rule "ioperf_2_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_3_value" is not found in dut, it should satisfy rule "ioperf_3_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "redirect" is not found in dut, it should satisfy rule "ioredirect"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqOffset" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_value" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_instr" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_valid" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_addr" is not found in dut, it should satisfy rule "iovecRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_hold" is not found in dut, it should satisfy rule "iovecRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_addr" is not found in dut, it should satisfy rule "iovecRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_hold" is not found in dut, it should satisfy rule "iovecRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_addr" is not found in dut, it should satisfy rule "iovecRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_hold" is not found in dut, it should satisfy rule "iovecRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_addr" is not found in dut, it should satisfy rule "iovecRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_hold" is not found in dut, it should satisfy rule "iovecRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_addr" is not found in dut, it should satisfy rule "iovecRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_hold" is not found in dut, it should satisfy rule "iovecRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_addr" is not found in dut, it should satisfy rule "iovecRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_hold" is not found in dut, it should satisfy rule "iovecRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_addr" is not found in dut, it should satisfy rule "iovecRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_hold" is not found in dut, it should satisfy rule "iovecRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_addr" is not found in dut, it should satisfy rule "iovecRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_hold" is not found in dut, it should satisfy rule "iovecRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_addr" is not found in dut, it should satisfy rule "iovecRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_hold" is not found in dut, it should satisfy rule "iovecRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_addr" is not found in dut, it should satisfy rule "iovecRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_hold" is not found in dut, it should satisfy rule "iovecRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_addr" is not found in dut, it should satisfy rule "iovecRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_hold" is not found in dut, it should satisfy rule "iovecRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_addr" is not found in dut, it should satisfy rule "iovecRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_hold" is not found in dut, it should satisfy rule "iovecRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_addr" is not found in dut, it should satisfy rule "iovecRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_hold" is not found in dut, it should satisfy rule "iovecRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_addr" is not found in dut, it should satisfy rule "iovecRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_hold" is not found in dut, it should satisfy rule "iovecRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_addr" is not found in dut, it should satisfy rule "iovecRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_hold" is not found in dut, it should satisfy rule "iovecRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_addr" is not found in dut, it should satisfy rule "iovecRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_hold" is not found in dut, it should satisfy rule "iovecRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_addr" is not found in dut, it should satisfy rule "iovecRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_hold" is not found in dut, it should satisfy rule "iovecRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_addr" is not found in dut, it should satisfy rule "iovecRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_hold" is not found in dut, it should satisfy rule "iovecRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_illegal" is not found in dut, it should satisfy rule "iovsetvlVType_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vlmul" is not found in dut, it should satisfy rule "iovsetvlVType_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vma" is not found in dut, it should satisfy rule "iovsetvlVType_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vsew" is not found in dut, it should satisfy rule "iovsetvlVType_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vta" is not found in dut, it should satisfy rule "iovsetvlVType_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vstart" is not found in dut, it should satisfy rule "iovstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "iofsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ioill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "ioin"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "ioout_bits"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "iofsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ioill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "ioin"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "ioout_bits"

Call

Teardown

Captured log teardown
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

PASSED test_rvc_expand_16bit_full[13106-19659] 0:00:09.406771

Test the RVC expand function with a full compressed instruction set

Description:

Perform an expand check on 16-bit compressed instructions within the range from 'start' to 'end'.

Setup

Captured log setup
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

Call

Teardown

Captured log teardown
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

PASSED test_rvc_expand_16bit_full[19659-26212] 0:00:08.942363

Test the RVC expand function with a full compressed instruction set

Description:

Perform an expand check on 16-bit compressed instructions within the range from 'start' to 'end'.

Setup

Captured log setup
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

Call

Teardown

Captured log teardown
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

PASSED test_rvc_expand_16bit_full[26212-32765] 0:00:10.072100

Test the RVC expand function with a full compressed instruction set

Description:

Perform an expand check on 16-bit compressed instructions within the range from 'start' to 'end'.

Setup

Captured log setup
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "csrCtrl_singlestep" is not found in dut, it should satisfy rule "iocsrCtrl_singlestep"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_addr" is not found in dut, it should satisfy rule "iofpRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_hold" is not found in dut, it should satisfy rule "iofpRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_addr" is not found in dut, it should satisfy rule "iofpRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_hold" is not found in dut, it should satisfy rule "iofpRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_addr" is not found in dut, it should satisfy rule "iofpRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_hold" is not found in dut, it should satisfy rule "iofpRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_addr" is not found in dut, it should satisfy rule "iofpRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_hold" is not found in dut, it should satisfy rule "iofpRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_addr" is not found in dut, it should satisfy rule "iofpRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_hold" is not found in dut, it should satisfy rule "iofpRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_addr" is not found in dut, it should satisfy rule "iofpRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_hold" is not found in dut, it should satisfy rule "iofpRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_addr" is not found in dut, it should satisfy rule "iofpRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_hold" is not found in dut, it should satisfy rule "iofpRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_addr" is not found in dut, it should satisfy rule "iofpRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_hold" is not found in dut, it should satisfy rule "iofpRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_addr" is not found in dut, it should satisfy rule "iofpRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_hold" is not found in dut, it should satisfy rule "iofpRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_addr" is not found in dut, it should satisfy rule "iofpRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_hold" is not found in dut, it should satisfy rule "iofpRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_addr" is not found in dut, it should satisfy rule "iofpRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_hold" is not found in dut, it should satisfy rule "iofpRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_addr" is not found in dut, it should satisfy rule "iofpRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_hold" is not found in dut, it should satisfy rule "iofpRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_addr" is not found in dut, it should satisfy rule "iofpRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_hold" is not found in dut, it should satisfy rule "iofpRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_addr" is not found in dut, it should satisfy rule "iofpRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_hold" is not found in dut, it should satisfy rule "iofpRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_addr" is not found in dut, it should satisfy rule "iofpRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_hold" is not found in dut, it should satisfy rule "iofpRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_addr" is not found in dut, it should satisfy rule "iofpRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_hold" is not found in dut, it should satisfy rule "iofpRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_addr" is not found in dut, it should satisfy rule "iofpRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_hold" is not found in dut, it should satisfy rule "iofpRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_addr" is not found in dut, it should satisfy rule "iofpRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_hold" is not found in dut, it should satisfy rule "iofpRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_frm" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_frm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_fsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceGVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceGVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceVVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceVVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_vsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_vsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_special_cboI2F" is not found in dut, it should satisfy rule "iofromCSR_special_cboI2F"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hfence" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hfence"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_hasVsetvl" is not found in dut, it should satisfy rule "iofromRob_commitVType_hasVsetvl"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vma" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vta" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_valid" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_isResumeVType" is not found in dut, it should satisfy rule "iofromRob_isResumeVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkToArchVType" is not found in dut, it should satisfy rule "iofromRob_walkToArchVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vma" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vta" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_valid" is not found in dut, it should satisfy rule "iofromRob_walkVType_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_0" is not found in dut, it should satisfy rule "iofusion_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_1" is not found in dut, it should satisfy rule "iofusion_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_2" is not found in dut, it should satisfy rule "iofusion_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_3" is not found in dut, it should satisfy rule "iofusion_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_4" is not found in dut, it should satisfy rule "iofusion_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_foldpc" is not found in dut, it should satisfy rule "ioin_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_instr" is not found in dut, it should satisfy rule "ioin_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_0_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_trigger" is not found in dut, it should satisfy rule "ioin_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_ready" is not found in dut, it should satisfy rule "ioin_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_valid" is not found in dut, it should satisfy rule "ioin_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_foldpc" is not found in dut, it should satisfy rule "ioin_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_instr" is not found in dut, it should satisfy rule "ioin_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_1_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_trigger" is not found in dut, it should satisfy rule "ioin_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_ready" is not found in dut, it should satisfy rule "ioin_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_valid" is not found in dut, it should satisfy rule "ioin_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_foldpc" is not found in dut, it should satisfy rule "ioin_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_instr" is not found in dut, it should satisfy rule "ioin_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_2_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_trigger" is not found in dut, it should satisfy rule "ioin_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_ready" is not found in dut, it should satisfy rule "ioin_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_valid" is not found in dut, it should satisfy rule "ioin_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_foldpc" is not found in dut, it should satisfy rule "ioin_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_instr" is not found in dut, it should satisfy rule "ioin_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_3_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_trigger" is not found in dut, it should satisfy rule "ioin_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_ready" is not found in dut, it should satisfy rule "ioin_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_valid" is not found in dut, it should satisfy rule "ioin_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_foldpc" is not found in dut, it should satisfy rule "ioin_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_instr" is not found in dut, it should satisfy rule "ioin_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_4_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_trigger" is not found in dut, it should satisfy rule "ioin_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_ready" is not found in dut, it should satisfy rule "ioin_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_valid" is not found in dut, it should satisfy rule "ioin_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_foldpc" is not found in dut, it should satisfy rule "ioin_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_instr" is not found in dut, it should satisfy rule "ioin_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_5_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_trigger" is not found in dut, it should satisfy rule "ioin_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_ready" is not found in dut, it should satisfy rule "ioin_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_valid" is not found in dut, it should satisfy rule "ioin_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_addr" is not found in dut, it should satisfy rule "iointRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_hold" is not found in dut, it should satisfy rule "iointRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_addr" is not found in dut, it should satisfy rule "iointRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_hold" is not found in dut, it should satisfy rule "iointRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_addr" is not found in dut, it should satisfy rule "iointRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_hold" is not found in dut, it should satisfy rule "iointRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_addr" is not found in dut, it should satisfy rule "iointRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_hold" is not found in dut, it should satisfy rule "iointRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_addr" is not found in dut, it should satisfy rule "iointRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_hold" is not found in dut, it should satisfy rule "iointRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_addr" is not found in dut, it should satisfy rule "iointRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_hold" is not found in dut, it should satisfy rule "iointRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_addr" is not found in dut, it should satisfy rule "iointRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_hold" is not found in dut, it should satisfy rule "iointRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_addr" is not found in dut, it should satisfy rule "iointRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_hold" is not found in dut, it should satisfy rule "iointRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_addr" is not found in dut, it should satisfy rule "iointRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_hold" is not found in dut, it should satisfy rule "iointRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_addr" is not found in dut, it should satisfy rule "iointRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_hold" is not found in dut, it should satisfy rule "iointRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_addr" is not found in dut, it should satisfy rule "iointRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_hold" is not found in dut, it should satisfy rule "iointRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_addr" is not found in dut, it should satisfy rule "iointRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_hold" is not found in dut, it should satisfy rule "iointRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_0_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_0_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_commitType" is not found in dut, it should satisfy rule "ioout_0_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_firstUop" is not found in dut, it should satisfy rule "ioout_0_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_0_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_foldpc" is not found in dut, it should satisfy rule "ioout_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpWen" is not found in dut, it should satisfy rule "ioout_0_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_0_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuType" is not found in dut, it should satisfy rule "ioout_0_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_imm" is not found in dut, it should satisfy rule "ioout_0_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_instr" is not found in dut, it should satisfy rule "ioout_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isMove" is not found in dut, it should satisfy rule "ioout_0_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isVset" is not found in dut, it should satisfy rule "ioout_0_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_0_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lastUop" is not found in dut, it should satisfy rule "ioout_0_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ldest" is not found in dut, it should satisfy rule "ioout_0_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_numWB" is not found in dut, it should satisfy rule "ioout_0_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_rfWen" is not found in dut, it should satisfy rule "ioout_0_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_selImm" is not found in dut, it should satisfy rule "ioout_0_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_trigger" is not found in dut, it should satisfy rule "ioout_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_0_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_0_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_0_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vecWen" is not found in dut, it should satisfy rule "ioout_0_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlWen" is not found in dut, it should satisfy rule "ioout_0_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_0_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_waitForward" is not found in dut, it should satisfy rule "ioout_0_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_wfflags" is not found in dut, it should satisfy rule "ioout_0_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_ready" is not found in dut, it should satisfy rule "ioout_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_valid" is not found in dut, it should satisfy rule "ioout_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_1_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_1_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_commitType" is not found in dut, it should satisfy rule "ioout_1_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_firstUop" is not found in dut, it should satisfy rule "ioout_1_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_1_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_foldpc" is not found in dut, it should satisfy rule "ioout_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpWen" is not found in dut, it should satisfy rule "ioout_1_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_1_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuType" is not found in dut, it should satisfy rule "ioout_1_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_imm" is not found in dut, it should satisfy rule "ioout_1_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_instr" is not found in dut, it should satisfy rule "ioout_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isMove" is not found in dut, it should satisfy rule "ioout_1_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isVset" is not found in dut, it should satisfy rule "ioout_1_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_1_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lastUop" is not found in dut, it should satisfy rule "ioout_1_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ldest" is not found in dut, it should satisfy rule "ioout_1_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_numWB" is not found in dut, it should satisfy rule "ioout_1_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_rfWen" is not found in dut, it should satisfy rule "ioout_1_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_selImm" is not found in dut, it should satisfy rule "ioout_1_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_trigger" is not found in dut, it should satisfy rule "ioout_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_1_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_1_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_1_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vecWen" is not found in dut, it should satisfy rule "ioout_1_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlWen" is not found in dut, it should satisfy rule "ioout_1_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_1_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_waitForward" is not found in dut, it should satisfy rule "ioout_1_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_wfflags" is not found in dut, it should satisfy rule "ioout_1_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_ready" is not found in dut, it should satisfy rule "ioout_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_valid" is not found in dut, it should satisfy rule "ioout_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_2_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_2_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_commitType" is not found in dut, it should satisfy rule "ioout_2_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_firstUop" is not found in dut, it should satisfy rule "ioout_2_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_2_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_foldpc" is not found in dut, it should satisfy rule "ioout_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpWen" is not found in dut, it should satisfy rule "ioout_2_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_2_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuType" is not found in dut, it should satisfy rule "ioout_2_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_imm" is not found in dut, it should satisfy rule "ioout_2_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_instr" is not found in dut, it should satisfy rule "ioout_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isMove" is not found in dut, it should satisfy rule "ioout_2_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isVset" is not found in dut, it should satisfy rule "ioout_2_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_2_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lastUop" is not found in dut, it should satisfy rule "ioout_2_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ldest" is not found in dut, it should satisfy rule "ioout_2_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_numWB" is not found in dut, it should satisfy rule "ioout_2_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_rfWen" is not found in dut, it should satisfy rule "ioout_2_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_selImm" is not found in dut, it should satisfy rule "ioout_2_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_trigger" is not found in dut, it should satisfy rule "ioout_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_2_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_2_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_2_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vecWen" is not found in dut, it should satisfy rule "ioout_2_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlWen" is not found in dut, it should satisfy rule "ioout_2_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_2_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_waitForward" is not found in dut, it should satisfy rule "ioout_2_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_wfflags" is not found in dut, it should satisfy rule "ioout_2_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_ready" is not found in dut, it should satisfy rule "ioout_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_valid" is not found in dut, it should satisfy rule "ioout_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_3_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_3_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_commitType" is not found in dut, it should satisfy rule "ioout_3_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_firstUop" is not found in dut, it should satisfy rule "ioout_3_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_3_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_foldpc" is not found in dut, it should satisfy rule "ioout_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpWen" is not found in dut, it should satisfy rule "ioout_3_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_3_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuType" is not found in dut, it should satisfy rule "ioout_3_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_imm" is not found in dut, it should satisfy rule "ioout_3_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_instr" is not found in dut, it should satisfy rule "ioout_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isMove" is not found in dut, it should satisfy rule "ioout_3_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isVset" is not found in dut, it should satisfy rule "ioout_3_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_3_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lastUop" is not found in dut, it should satisfy rule "ioout_3_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ldest" is not found in dut, it should satisfy rule "ioout_3_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_numWB" is not found in dut, it should satisfy rule "ioout_3_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_rfWen" is not found in dut, it should satisfy rule "ioout_3_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_selImm" is not found in dut, it should satisfy rule "ioout_3_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_trigger" is not found in dut, it should satisfy rule "ioout_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_3_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_3_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_3_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vecWen" is not found in dut, it should satisfy rule "ioout_3_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlWen" is not found in dut, it should satisfy rule "ioout_3_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_3_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_waitForward" is not found in dut, it should satisfy rule "ioout_3_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_wfflags" is not found in dut, it should satisfy rule "ioout_3_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_ready" is not found in dut, it should satisfy rule "ioout_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_valid" is not found in dut, it should satisfy rule "ioout_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_4_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_4_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_commitType" is not found in dut, it should satisfy rule "ioout_4_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_firstUop" is not found in dut, it should satisfy rule "ioout_4_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_4_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_foldpc" is not found in dut, it should satisfy rule "ioout_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpWen" is not found in dut, it should satisfy rule "ioout_4_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_4_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuType" is not found in dut, it should satisfy rule "ioout_4_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_imm" is not found in dut, it should satisfy rule "ioout_4_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_instr" is not found in dut, it should satisfy rule "ioout_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isMove" is not found in dut, it should satisfy rule "ioout_4_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isVset" is not found in dut, it should satisfy rule "ioout_4_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_4_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lastUop" is not found in dut, it should satisfy rule "ioout_4_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ldest" is not found in dut, it should satisfy rule "ioout_4_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_numWB" is not found in dut, it should satisfy rule "ioout_4_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_rfWen" is not found in dut, it should satisfy rule "ioout_4_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_selImm" is not found in dut, it should satisfy rule "ioout_4_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_trigger" is not found in dut, it should satisfy rule "ioout_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_4_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_4_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_4_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vecWen" is not found in dut, it should satisfy rule "ioout_4_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlWen" is not found in dut, it should satisfy rule "ioout_4_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_4_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_waitForward" is not found in dut, it should satisfy rule "ioout_4_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_wfflags" is not found in dut, it should satisfy rule "ioout_4_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_ready" is not found in dut, it should satisfy rule "ioout_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_valid" is not found in dut, it should satisfy rule "ioout_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_5_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_5_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_commitType" is not found in dut, it should satisfy rule "ioout_5_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_firstUop" is not found in dut, it should satisfy rule "ioout_5_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_5_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_foldpc" is not found in dut, it should satisfy rule "ioout_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpWen" is not found in dut, it should satisfy rule "ioout_5_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_5_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuType" is not found in dut, it should satisfy rule "ioout_5_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_imm" is not found in dut, it should satisfy rule "ioout_5_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_instr" is not found in dut, it should satisfy rule "ioout_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isMove" is not found in dut, it should satisfy rule "ioout_5_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isVset" is not found in dut, it should satisfy rule "ioout_5_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_5_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lastUop" is not found in dut, it should satisfy rule "ioout_5_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ldest" is not found in dut, it should satisfy rule "ioout_5_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_numWB" is not found in dut, it should satisfy rule "ioout_5_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_rfWen" is not found in dut, it should satisfy rule "ioout_5_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_selImm" is not found in dut, it should satisfy rule "ioout_5_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_trigger" is not found in dut, it should satisfy rule "ioout_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_5_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_5_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_5_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vecWen" is not found in dut, it should satisfy rule "ioout_5_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlWen" is not found in dut, it should satisfy rule "ioout_5_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_5_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_waitForward" is not found in dut, it should satisfy rule "ioout_5_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_wfflags" is not found in dut, it should satisfy rule "ioout_5_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_ready" is not found in dut, it should satisfy rule "ioout_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_valid" is not found in dut, it should satisfy rule "ioout_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_0_value" is not found in dut, it should satisfy rule "ioperf_0_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_1_value" is not found in dut, it should satisfy rule "ioperf_1_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_2_value" is not found in dut, it should satisfy rule "ioperf_2_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_3_value" is not found in dut, it should satisfy rule "ioperf_3_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "redirect" is not found in dut, it should satisfy rule "ioredirect"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqOffset" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_value" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_instr" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_valid" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_addr" is not found in dut, it should satisfy rule "iovecRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_hold" is not found in dut, it should satisfy rule "iovecRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_addr" is not found in dut, it should satisfy rule "iovecRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_hold" is not found in dut, it should satisfy rule "iovecRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_addr" is not found in dut, it should satisfy rule "iovecRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_hold" is not found in dut, it should satisfy rule "iovecRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_addr" is not found in dut, it should satisfy rule "iovecRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_hold" is not found in dut, it should satisfy rule "iovecRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_addr" is not found in dut, it should satisfy rule "iovecRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_hold" is not found in dut, it should satisfy rule "iovecRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_addr" is not found in dut, it should satisfy rule "iovecRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_hold" is not found in dut, it should satisfy rule "iovecRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_addr" is not found in dut, it should satisfy rule "iovecRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_hold" is not found in dut, it should satisfy rule "iovecRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_addr" is not found in dut, it should satisfy rule "iovecRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_hold" is not found in dut, it should satisfy rule "iovecRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_addr" is not found in dut, it should satisfy rule "iovecRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_hold" is not found in dut, it should satisfy rule "iovecRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_addr" is not found in dut, it should satisfy rule "iovecRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_hold" is not found in dut, it should satisfy rule "iovecRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_addr" is not found in dut, it should satisfy rule "iovecRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_hold" is not found in dut, it should satisfy rule "iovecRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_addr" is not found in dut, it should satisfy rule "iovecRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_hold" is not found in dut, it should satisfy rule "iovecRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_addr" is not found in dut, it should satisfy rule "iovecRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_hold" is not found in dut, it should satisfy rule "iovecRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_addr" is not found in dut, it should satisfy rule "iovecRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_hold" is not found in dut, it should satisfy rule "iovecRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_addr" is not found in dut, it should satisfy rule "iovecRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_hold" is not found in dut, it should satisfy rule "iovecRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_addr" is not found in dut, it should satisfy rule "iovecRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_hold" is not found in dut, it should satisfy rule "iovecRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_addr" is not found in dut, it should satisfy rule "iovecRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_hold" is not found in dut, it should satisfy rule "iovecRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_addr" is not found in dut, it should satisfy rule "iovecRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_hold" is not found in dut, it should satisfy rule "iovecRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_illegal" is not found in dut, it should satisfy rule "iovsetvlVType_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vlmul" is not found in dut, it should satisfy rule "iovsetvlVType_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vma" is not found in dut, it should satisfy rule "iovsetvlVType_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vsew" is not found in dut, it should satisfy rule "iovsetvlVType_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vta" is not found in dut, it should satisfy rule "iovsetvlVType_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vstart" is not found in dut, it should satisfy rule "iovstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "iofsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ioill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "ioin"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "ioout_bits"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "csrCtrl_singlestep" is not found in dut, it should satisfy rule "iocsrCtrl_singlestep"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_addr" is not found in dut, it should satisfy rule "iofpRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_hold" is not found in dut, it should satisfy rule "iofpRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_addr" is not found in dut, it should satisfy rule "iofpRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_hold" is not found in dut, it should satisfy rule "iofpRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_addr" is not found in dut, it should satisfy rule "iofpRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_hold" is not found in dut, it should satisfy rule "iofpRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_addr" is not found in dut, it should satisfy rule "iofpRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_hold" is not found in dut, it should satisfy rule "iofpRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_addr" is not found in dut, it should satisfy rule "iofpRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_hold" is not found in dut, it should satisfy rule "iofpRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_addr" is not found in dut, it should satisfy rule "iofpRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_hold" is not found in dut, it should satisfy rule "iofpRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_addr" is not found in dut, it should satisfy rule "iofpRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_hold" is not found in dut, it should satisfy rule "iofpRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_addr" is not found in dut, it should satisfy rule "iofpRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_hold" is not found in dut, it should satisfy rule "iofpRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_addr" is not found in dut, it should satisfy rule "iofpRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_hold" is not found in dut, it should satisfy rule "iofpRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_addr" is not found in dut, it should satisfy rule "iofpRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_hold" is not found in dut, it should satisfy rule "iofpRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_addr" is not found in dut, it should satisfy rule "iofpRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_hold" is not found in dut, it should satisfy rule "iofpRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_addr" is not found in dut, it should satisfy rule "iofpRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_hold" is not found in dut, it should satisfy rule "iofpRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_addr" is not found in dut, it should satisfy rule "iofpRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_hold" is not found in dut, it should satisfy rule "iofpRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_addr" is not found in dut, it should satisfy rule "iofpRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_hold" is not found in dut, it should satisfy rule "iofpRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_addr" is not found in dut, it should satisfy rule "iofpRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_hold" is not found in dut, it should satisfy rule "iofpRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_addr" is not found in dut, it should satisfy rule "iofpRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_hold" is not found in dut, it should satisfy rule "iofpRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_addr" is not found in dut, it should satisfy rule "iofpRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_hold" is not found in dut, it should satisfy rule "iofpRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_addr" is not found in dut, it should satisfy rule "iofpRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_hold" is not found in dut, it should satisfy rule "iofpRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_frm" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_frm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_fsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceGVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceGVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceVVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceVVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_vsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_vsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_special_cboI2F" is not found in dut, it should satisfy rule "iofromCSR_special_cboI2F"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hfence" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hfence"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_hasVsetvl" is not found in dut, it should satisfy rule "iofromRob_commitVType_hasVsetvl"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vma" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vta" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_valid" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_isResumeVType" is not found in dut, it should satisfy rule "iofromRob_isResumeVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkToArchVType" is not found in dut, it should satisfy rule "iofromRob_walkToArchVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vma" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vta" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_valid" is not found in dut, it should satisfy rule "iofromRob_walkVType_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_0" is not found in dut, it should satisfy rule "iofusion_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_1" is not found in dut, it should satisfy rule "iofusion_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_2" is not found in dut, it should satisfy rule "iofusion_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_3" is not found in dut, it should satisfy rule "iofusion_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_4" is not found in dut, it should satisfy rule "iofusion_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_foldpc" is not found in dut, it should satisfy rule "ioin_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_instr" is not found in dut, it should satisfy rule "ioin_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_0_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_trigger" is not found in dut, it should satisfy rule "ioin_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_ready" is not found in dut, it should satisfy rule "ioin_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_valid" is not found in dut, it should satisfy rule "ioin_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_foldpc" is not found in dut, it should satisfy rule "ioin_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_instr" is not found in dut, it should satisfy rule "ioin_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_1_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_trigger" is not found in dut, it should satisfy rule "ioin_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_ready" is not found in dut, it should satisfy rule "ioin_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_valid" is not found in dut, it should satisfy rule "ioin_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_foldpc" is not found in dut, it should satisfy rule "ioin_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_instr" is not found in dut, it should satisfy rule "ioin_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_2_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_trigger" is not found in dut, it should satisfy rule "ioin_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_ready" is not found in dut, it should satisfy rule "ioin_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_valid" is not found in dut, it should satisfy rule "ioin_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_foldpc" is not found in dut, it should satisfy rule "ioin_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_instr" is not found in dut, it should satisfy rule "ioin_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_3_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_trigger" is not found in dut, it should satisfy rule "ioin_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_ready" is not found in dut, it should satisfy rule "ioin_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_valid" is not found in dut, it should satisfy rule "ioin_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_foldpc" is not found in dut, it should satisfy rule "ioin_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_instr" is not found in dut, it should satisfy rule "ioin_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_4_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_trigger" is not found in dut, it should satisfy rule "ioin_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_ready" is not found in dut, it should satisfy rule "ioin_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_valid" is not found in dut, it should satisfy rule "ioin_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_foldpc" is not found in dut, it should satisfy rule "ioin_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_instr" is not found in dut, it should satisfy rule "ioin_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_5_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_trigger" is not found in dut, it should satisfy rule "ioin_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_ready" is not found in dut, it should satisfy rule "ioin_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_valid" is not found in dut, it should satisfy rule "ioin_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_addr" is not found in dut, it should satisfy rule "iointRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_hold" is not found in dut, it should satisfy rule "iointRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_addr" is not found in dut, it should satisfy rule "iointRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_hold" is not found in dut, it should satisfy rule "iointRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_addr" is not found in dut, it should satisfy rule "iointRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_hold" is not found in dut, it should satisfy rule "iointRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_addr" is not found in dut, it should satisfy rule "iointRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_hold" is not found in dut, it should satisfy rule "iointRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_addr" is not found in dut, it should satisfy rule "iointRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_hold" is not found in dut, it should satisfy rule "iointRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_addr" is not found in dut, it should satisfy rule "iointRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_hold" is not found in dut, it should satisfy rule "iointRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_addr" is not found in dut, it should satisfy rule "iointRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_hold" is not found in dut, it should satisfy rule "iointRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_addr" is not found in dut, it should satisfy rule "iointRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_hold" is not found in dut, it should satisfy rule "iointRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_addr" is not found in dut, it should satisfy rule "iointRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_hold" is not found in dut, it should satisfy rule "iointRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_addr" is not found in dut, it should satisfy rule "iointRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_hold" is not found in dut, it should satisfy rule "iointRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_addr" is not found in dut, it should satisfy rule "iointRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_hold" is not found in dut, it should satisfy rule "iointRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_addr" is not found in dut, it should satisfy rule "iointRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_hold" is not found in dut, it should satisfy rule "iointRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_0_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_0_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_commitType" is not found in dut, it should satisfy rule "ioout_0_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_firstUop" is not found in dut, it should satisfy rule "ioout_0_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_0_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_foldpc" is not found in dut, it should satisfy rule "ioout_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpWen" is not found in dut, it should satisfy rule "ioout_0_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_0_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuType" is not found in dut, it should satisfy rule "ioout_0_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_imm" is not found in dut, it should satisfy rule "ioout_0_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_instr" is not found in dut, it should satisfy rule "ioout_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isMove" is not found in dut, it should satisfy rule "ioout_0_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isVset" is not found in dut, it should satisfy rule "ioout_0_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_0_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lastUop" is not found in dut, it should satisfy rule "ioout_0_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ldest" is not found in dut, it should satisfy rule "ioout_0_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_numWB" is not found in dut, it should satisfy rule "ioout_0_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_rfWen" is not found in dut, it should satisfy rule "ioout_0_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_selImm" is not found in dut, it should satisfy rule "ioout_0_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_trigger" is not found in dut, it should satisfy rule "ioout_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_0_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_0_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_0_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vecWen" is not found in dut, it should satisfy rule "ioout_0_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlWen" is not found in dut, it should satisfy rule "ioout_0_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_0_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_waitForward" is not found in dut, it should satisfy rule "ioout_0_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_wfflags" is not found in dut, it should satisfy rule "ioout_0_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_ready" is not found in dut, it should satisfy rule "ioout_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_valid" is not found in dut, it should satisfy rule "ioout_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_1_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_1_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_commitType" is not found in dut, it should satisfy rule "ioout_1_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_firstUop" is not found in dut, it should satisfy rule "ioout_1_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_1_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_foldpc" is not found in dut, it should satisfy rule "ioout_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpWen" is not found in dut, it should satisfy rule "ioout_1_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_1_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuType" is not found in dut, it should satisfy rule "ioout_1_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_imm" is not found in dut, it should satisfy rule "ioout_1_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_instr" is not found in dut, it should satisfy rule "ioout_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isMove" is not found in dut, it should satisfy rule "ioout_1_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isVset" is not found in dut, it should satisfy rule "ioout_1_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_1_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lastUop" is not found in dut, it should satisfy rule "ioout_1_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ldest" is not found in dut, it should satisfy rule "ioout_1_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_numWB" is not found in dut, it should satisfy rule "ioout_1_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_rfWen" is not found in dut, it should satisfy rule "ioout_1_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_selImm" is not found in dut, it should satisfy rule "ioout_1_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_trigger" is not found in dut, it should satisfy rule "ioout_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_1_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_1_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_1_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vecWen" is not found in dut, it should satisfy rule "ioout_1_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlWen" is not found in dut, it should satisfy rule "ioout_1_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_1_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_waitForward" is not found in dut, it should satisfy rule "ioout_1_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_wfflags" is not found in dut, it should satisfy rule "ioout_1_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_ready" is not found in dut, it should satisfy rule "ioout_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_valid" is not found in dut, it should satisfy rule "ioout_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_2_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_2_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_commitType" is not found in dut, it should satisfy rule "ioout_2_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_firstUop" is not found in dut, it should satisfy rule "ioout_2_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_2_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_foldpc" is not found in dut, it should satisfy rule "ioout_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpWen" is not found in dut, it should satisfy rule "ioout_2_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_2_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuType" is not found in dut, it should satisfy rule "ioout_2_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_imm" is not found in dut, it should satisfy rule "ioout_2_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_instr" is not found in dut, it should satisfy rule "ioout_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isMove" is not found in dut, it should satisfy rule "ioout_2_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isVset" is not found in dut, it should satisfy rule "ioout_2_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_2_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lastUop" is not found in dut, it should satisfy rule "ioout_2_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ldest" is not found in dut, it should satisfy rule "ioout_2_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_numWB" is not found in dut, it should satisfy rule "ioout_2_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_rfWen" is not found in dut, it should satisfy rule "ioout_2_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_selImm" is not found in dut, it should satisfy rule "ioout_2_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_trigger" is not found in dut, it should satisfy rule "ioout_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_2_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_2_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_2_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vecWen" is not found in dut, it should satisfy rule "ioout_2_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlWen" is not found in dut, it should satisfy rule "ioout_2_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_2_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_waitForward" is not found in dut, it should satisfy rule "ioout_2_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_wfflags" is not found in dut, it should satisfy rule "ioout_2_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_ready" is not found in dut, it should satisfy rule "ioout_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_valid" is not found in dut, it should satisfy rule "ioout_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_3_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_3_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_commitType" is not found in dut, it should satisfy rule "ioout_3_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_firstUop" is not found in dut, it should satisfy rule "ioout_3_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_3_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_foldpc" is not found in dut, it should satisfy rule "ioout_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpWen" is not found in dut, it should satisfy rule "ioout_3_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_3_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuType" is not found in dut, it should satisfy rule "ioout_3_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_imm" is not found in dut, it should satisfy rule "ioout_3_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_instr" is not found in dut, it should satisfy rule "ioout_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isMove" is not found in dut, it should satisfy rule "ioout_3_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isVset" is not found in dut, it should satisfy rule "ioout_3_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_3_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lastUop" is not found in dut, it should satisfy rule "ioout_3_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ldest" is not found in dut, it should satisfy rule "ioout_3_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_numWB" is not found in dut, it should satisfy rule "ioout_3_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_rfWen" is not found in dut, it should satisfy rule "ioout_3_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_selImm" is not found in dut, it should satisfy rule "ioout_3_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_trigger" is not found in dut, it should satisfy rule "ioout_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_3_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_3_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_3_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vecWen" is not found in dut, it should satisfy rule "ioout_3_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlWen" is not found in dut, it should satisfy rule "ioout_3_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_3_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_waitForward" is not found in dut, it should satisfy rule "ioout_3_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_wfflags" is not found in dut, it should satisfy rule "ioout_3_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_ready" is not found in dut, it should satisfy rule "ioout_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_valid" is not found in dut, it should satisfy rule "ioout_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_4_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_4_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_commitType" is not found in dut, it should satisfy rule "ioout_4_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_firstUop" is not found in dut, it should satisfy rule "ioout_4_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_4_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_foldpc" is not found in dut, it should satisfy rule "ioout_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpWen" is not found in dut, it should satisfy rule "ioout_4_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_4_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuType" is not found in dut, it should satisfy rule "ioout_4_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_imm" is not found in dut, it should satisfy rule "ioout_4_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_instr" is not found in dut, it should satisfy rule "ioout_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isMove" is not found in dut, it should satisfy rule "ioout_4_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isVset" is not found in dut, it should satisfy rule "ioout_4_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_4_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lastUop" is not found in dut, it should satisfy rule "ioout_4_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ldest" is not found in dut, it should satisfy rule "ioout_4_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_numWB" is not found in dut, it should satisfy rule "ioout_4_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_rfWen" is not found in dut, it should satisfy rule "ioout_4_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_selImm" is not found in dut, it should satisfy rule "ioout_4_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_trigger" is not found in dut, it should satisfy rule "ioout_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_4_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_4_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_4_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vecWen" is not found in dut, it should satisfy rule "ioout_4_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlWen" is not found in dut, it should satisfy rule "ioout_4_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_4_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_waitForward" is not found in dut, it should satisfy rule "ioout_4_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_wfflags" is not found in dut, it should satisfy rule "ioout_4_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_ready" is not found in dut, it should satisfy rule "ioout_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_valid" is not found in dut, it should satisfy rule "ioout_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_5_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_5_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_commitType" is not found in dut, it should satisfy rule "ioout_5_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_firstUop" is not found in dut, it should satisfy rule "ioout_5_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_5_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_foldpc" is not found in dut, it should satisfy rule "ioout_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpWen" is not found in dut, it should satisfy rule "ioout_5_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_5_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuType" is not found in dut, it should satisfy rule "ioout_5_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_imm" is not found in dut, it should satisfy rule "ioout_5_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_instr" is not found in dut, it should satisfy rule "ioout_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isMove" is not found in dut, it should satisfy rule "ioout_5_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isVset" is not found in dut, it should satisfy rule "ioout_5_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_5_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lastUop" is not found in dut, it should satisfy rule "ioout_5_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ldest" is not found in dut, it should satisfy rule "ioout_5_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_numWB" is not found in dut, it should satisfy rule "ioout_5_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_rfWen" is not found in dut, it should satisfy rule "ioout_5_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_selImm" is not found in dut, it should satisfy rule "ioout_5_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_trigger" is not found in dut, it should satisfy rule "ioout_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_5_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_5_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_5_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vecWen" is not found in dut, it should satisfy rule "ioout_5_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlWen" is not found in dut, it should satisfy rule "ioout_5_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_5_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_waitForward" is not found in dut, it should satisfy rule "ioout_5_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_wfflags" is not found in dut, it should satisfy rule "ioout_5_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_ready" is not found in dut, it should satisfy rule "ioout_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_valid" is not found in dut, it should satisfy rule "ioout_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_0_value" is not found in dut, it should satisfy rule "ioperf_0_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_1_value" is not found in dut, it should satisfy rule "ioperf_1_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_2_value" is not found in dut, it should satisfy rule "ioperf_2_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_3_value" is not found in dut, it should satisfy rule "ioperf_3_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "redirect" is not found in dut, it should satisfy rule "ioredirect"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqOffset" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_value" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_instr" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_valid" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_addr" is not found in dut, it should satisfy rule "iovecRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_hold" is not found in dut, it should satisfy rule "iovecRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_addr" is not found in dut, it should satisfy rule "iovecRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_hold" is not found in dut, it should satisfy rule "iovecRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_addr" is not found in dut, it should satisfy rule "iovecRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_hold" is not found in dut, it should satisfy rule "iovecRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_addr" is not found in dut, it should satisfy rule "iovecRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_hold" is not found in dut, it should satisfy rule "iovecRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_addr" is not found in dut, it should satisfy rule "iovecRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_hold" is not found in dut, it should satisfy rule "iovecRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_addr" is not found in dut, it should satisfy rule "iovecRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_hold" is not found in dut, it should satisfy rule "iovecRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_addr" is not found in dut, it should satisfy rule "iovecRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_hold" is not found in dut, it should satisfy rule "iovecRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_addr" is not found in dut, it should satisfy rule "iovecRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_hold" is not found in dut, it should satisfy rule "iovecRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_addr" is not found in dut, it should satisfy rule "iovecRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_hold" is not found in dut, it should satisfy rule "iovecRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_addr" is not found in dut, it should satisfy rule "iovecRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_hold" is not found in dut, it should satisfy rule "iovecRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_addr" is not found in dut, it should satisfy rule "iovecRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_hold" is not found in dut, it should satisfy rule "iovecRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_addr" is not found in dut, it should satisfy rule "iovecRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_hold" is not found in dut, it should satisfy rule "iovecRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_addr" is not found in dut, it should satisfy rule "iovecRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_hold" is not found in dut, it should satisfy rule "iovecRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_addr" is not found in dut, it should satisfy rule "iovecRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_hold" is not found in dut, it should satisfy rule "iovecRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_addr" is not found in dut, it should satisfy rule "iovecRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_hold" is not found in dut, it should satisfy rule "iovecRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_addr" is not found in dut, it should satisfy rule "iovecRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_hold" is not found in dut, it should satisfy rule "iovecRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_addr" is not found in dut, it should satisfy rule "iovecRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_hold" is not found in dut, it should satisfy rule "iovecRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_addr" is not found in dut, it should satisfy rule "iovecRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_hold" is not found in dut, it should satisfy rule "iovecRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_illegal" is not found in dut, it should satisfy rule "iovsetvlVType_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vlmul" is not found in dut, it should satisfy rule "iovsetvlVType_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vma" is not found in dut, it should satisfy rule "iovsetvlVType_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vsew" is not found in dut, it should satisfy rule "iovsetvlVType_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vta" is not found in dut, it should satisfy rule "iovsetvlVType_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vstart" is not found in dut, it should satisfy rule "iovstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "iofsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ioill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "ioin"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "ioout_bits"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "csrCtrl_singlestep" is not found in dut, it should satisfy rule "iocsrCtrl_singlestep"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_addr" is not found in dut, it should satisfy rule "iofpRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_hold" is not found in dut, it should satisfy rule "iofpRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_addr" is not found in dut, it should satisfy rule "iofpRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_hold" is not found in dut, it should satisfy rule "iofpRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_addr" is not found in dut, it should satisfy rule "iofpRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_hold" is not found in dut, it should satisfy rule "iofpRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_addr" is not found in dut, it should satisfy rule "iofpRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_hold" is not found in dut, it should satisfy rule "iofpRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_addr" is not found in dut, it should satisfy rule "iofpRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_hold" is not found in dut, it should satisfy rule "iofpRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_addr" is not found in dut, it should satisfy rule "iofpRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_hold" is not found in dut, it should satisfy rule "iofpRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_addr" is not found in dut, it should satisfy rule "iofpRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_hold" is not found in dut, it should satisfy rule "iofpRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_addr" is not found in dut, it should satisfy rule "iofpRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_hold" is not found in dut, it should satisfy rule "iofpRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_addr" is not found in dut, it should satisfy rule "iofpRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_hold" is not found in dut, it should satisfy rule "iofpRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_addr" is not found in dut, it should satisfy rule "iofpRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_hold" is not found in dut, it should satisfy rule "iofpRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_addr" is not found in dut, it should satisfy rule "iofpRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_hold" is not found in dut, it should satisfy rule "iofpRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_addr" is not found in dut, it should satisfy rule "iofpRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_hold" is not found in dut, it should satisfy rule "iofpRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_addr" is not found in dut, it should satisfy rule "iofpRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_hold" is not found in dut, it should satisfy rule "iofpRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_addr" is not found in dut, it should satisfy rule "iofpRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_hold" is not found in dut, it should satisfy rule "iofpRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_addr" is not found in dut, it should satisfy rule "iofpRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_hold" is not found in dut, it should satisfy rule "iofpRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_addr" is not found in dut, it should satisfy rule "iofpRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_hold" is not found in dut, it should satisfy rule "iofpRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_addr" is not found in dut, it should satisfy rule "iofpRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_hold" is not found in dut, it should satisfy rule "iofpRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_addr" is not found in dut, it should satisfy rule "iofpRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_hold" is not found in dut, it should satisfy rule "iofpRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_frm" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_frm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_fsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceGVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceGVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceVVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceVVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_vsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_vsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_special_cboI2F" is not found in dut, it should satisfy rule "iofromCSR_special_cboI2F"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hfence" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hfence"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_hasVsetvl" is not found in dut, it should satisfy rule "iofromRob_commitVType_hasVsetvl"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vma" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vta" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_valid" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_isResumeVType" is not found in dut, it should satisfy rule "iofromRob_isResumeVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkToArchVType" is not found in dut, it should satisfy rule "iofromRob_walkToArchVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vma" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vta" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_valid" is not found in dut, it should satisfy rule "iofromRob_walkVType_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_0" is not found in dut, it should satisfy rule "iofusion_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_1" is not found in dut, it should satisfy rule "iofusion_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_2" is not found in dut, it should satisfy rule "iofusion_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_3" is not found in dut, it should satisfy rule "iofusion_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_4" is not found in dut, it should satisfy rule "iofusion_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_foldpc" is not found in dut, it should satisfy rule "ioin_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_instr" is not found in dut, it should satisfy rule "ioin_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_0_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_trigger" is not found in dut, it should satisfy rule "ioin_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_ready" is not found in dut, it should satisfy rule "ioin_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_valid" is not found in dut, it should satisfy rule "ioin_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_foldpc" is not found in dut, it should satisfy rule "ioin_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_instr" is not found in dut, it should satisfy rule "ioin_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_1_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_trigger" is not found in dut, it should satisfy rule "ioin_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_ready" is not found in dut, it should satisfy rule "ioin_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_valid" is not found in dut, it should satisfy rule "ioin_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_foldpc" is not found in dut, it should satisfy rule "ioin_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_instr" is not found in dut, it should satisfy rule "ioin_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_2_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_trigger" is not found in dut, it should satisfy rule "ioin_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_ready" is not found in dut, it should satisfy rule "ioin_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_valid" is not found in dut, it should satisfy rule "ioin_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_foldpc" is not found in dut, it should satisfy rule "ioin_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_instr" is not found in dut, it should satisfy rule "ioin_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_3_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_trigger" is not found in dut, it should satisfy rule "ioin_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_ready" is not found in dut, it should satisfy rule "ioin_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_valid" is not found in dut, it should satisfy rule "ioin_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_foldpc" is not found in dut, it should satisfy rule "ioin_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_instr" is not found in dut, it should satisfy rule "ioin_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_4_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_trigger" is not found in dut, it should satisfy rule "ioin_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_ready" is not found in dut, it should satisfy rule "ioin_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_valid" is not found in dut, it should satisfy rule "ioin_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_foldpc" is not found in dut, it should satisfy rule "ioin_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_instr" is not found in dut, it should satisfy rule "ioin_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_5_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_trigger" is not found in dut, it should satisfy rule "ioin_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_ready" is not found in dut, it should satisfy rule "ioin_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_valid" is not found in dut, it should satisfy rule "ioin_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_addr" is not found in dut, it should satisfy rule "iointRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_hold" is not found in dut, it should satisfy rule "iointRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_addr" is not found in dut, it should satisfy rule "iointRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_hold" is not found in dut, it should satisfy rule "iointRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_addr" is not found in dut, it should satisfy rule "iointRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_hold" is not found in dut, it should satisfy rule "iointRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_addr" is not found in dut, it should satisfy rule "iointRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_hold" is not found in dut, it should satisfy rule "iointRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_addr" is not found in dut, it should satisfy rule "iointRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_hold" is not found in dut, it should satisfy rule "iointRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_addr" is not found in dut, it should satisfy rule "iointRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_hold" is not found in dut, it should satisfy rule "iointRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_addr" is not found in dut, it should satisfy rule "iointRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_hold" is not found in dut, it should satisfy rule "iointRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_addr" is not found in dut, it should satisfy rule "iointRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_hold" is not found in dut, it should satisfy rule "iointRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_addr" is not found in dut, it should satisfy rule "iointRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_hold" is not found in dut, it should satisfy rule "iointRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_addr" is not found in dut, it should satisfy rule "iointRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_hold" is not found in dut, it should satisfy rule "iointRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_addr" is not found in dut, it should satisfy rule "iointRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_hold" is not found in dut, it should satisfy rule "iointRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_addr" is not found in dut, it should satisfy rule "iointRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_hold" is not found in dut, it should satisfy rule "iointRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_0_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_0_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_commitType" is not found in dut, it should satisfy rule "ioout_0_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_firstUop" is not found in dut, it should satisfy rule "ioout_0_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_0_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_foldpc" is not found in dut, it should satisfy rule "ioout_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpWen" is not found in dut, it should satisfy rule "ioout_0_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_0_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuType" is not found in dut, it should satisfy rule "ioout_0_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_imm" is not found in dut, it should satisfy rule "ioout_0_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_instr" is not found in dut, it should satisfy rule "ioout_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isMove" is not found in dut, it should satisfy rule "ioout_0_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isVset" is not found in dut, it should satisfy rule "ioout_0_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_0_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lastUop" is not found in dut, it should satisfy rule "ioout_0_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ldest" is not found in dut, it should satisfy rule "ioout_0_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_numWB" is not found in dut, it should satisfy rule "ioout_0_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_rfWen" is not found in dut, it should satisfy rule "ioout_0_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_selImm" is not found in dut, it should satisfy rule "ioout_0_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_trigger" is not found in dut, it should satisfy rule "ioout_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_0_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_0_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_0_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vecWen" is not found in dut, it should satisfy rule "ioout_0_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlWen" is not found in dut, it should satisfy rule "ioout_0_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_0_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_waitForward" is not found in dut, it should satisfy rule "ioout_0_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_wfflags" is not found in dut, it should satisfy rule "ioout_0_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_ready" is not found in dut, it should satisfy rule "ioout_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_valid" is not found in dut, it should satisfy rule "ioout_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_1_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_1_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_commitType" is not found in dut, it should satisfy rule "ioout_1_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_firstUop" is not found in dut, it should satisfy rule "ioout_1_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_1_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_foldpc" is not found in dut, it should satisfy rule "ioout_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpWen" is not found in dut, it should satisfy rule "ioout_1_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_1_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuType" is not found in dut, it should satisfy rule "ioout_1_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_imm" is not found in dut, it should satisfy rule "ioout_1_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_instr" is not found in dut, it should satisfy rule "ioout_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isMove" is not found in dut, it should satisfy rule "ioout_1_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isVset" is not found in dut, it should satisfy rule "ioout_1_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_1_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lastUop" is not found in dut, it should satisfy rule "ioout_1_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ldest" is not found in dut, it should satisfy rule "ioout_1_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_numWB" is not found in dut, it should satisfy rule "ioout_1_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_rfWen" is not found in dut, it should satisfy rule "ioout_1_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_selImm" is not found in dut, it should satisfy rule "ioout_1_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_trigger" is not found in dut, it should satisfy rule "ioout_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_1_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_1_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_1_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vecWen" is not found in dut, it should satisfy rule "ioout_1_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlWen" is not found in dut, it should satisfy rule "ioout_1_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_1_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_waitForward" is not found in dut, it should satisfy rule "ioout_1_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_wfflags" is not found in dut, it should satisfy rule "ioout_1_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_ready" is not found in dut, it should satisfy rule "ioout_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_valid" is not found in dut, it should satisfy rule "ioout_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_2_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_2_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_commitType" is not found in dut, it should satisfy rule "ioout_2_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_firstUop" is not found in dut, it should satisfy rule "ioout_2_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_2_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_foldpc" is not found in dut, it should satisfy rule "ioout_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpWen" is not found in dut, it should satisfy rule "ioout_2_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_2_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuType" is not found in dut, it should satisfy rule "ioout_2_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_imm" is not found in dut, it should satisfy rule "ioout_2_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_instr" is not found in dut, it should satisfy rule "ioout_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isMove" is not found in dut, it should satisfy rule "ioout_2_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isVset" is not found in dut, it should satisfy rule "ioout_2_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_2_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lastUop" is not found in dut, it should satisfy rule "ioout_2_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ldest" is not found in dut, it should satisfy rule "ioout_2_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_numWB" is not found in dut, it should satisfy rule "ioout_2_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_rfWen" is not found in dut, it should satisfy rule "ioout_2_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_selImm" is not found in dut, it should satisfy rule "ioout_2_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_trigger" is not found in dut, it should satisfy rule "ioout_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_2_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_2_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_2_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vecWen" is not found in dut, it should satisfy rule "ioout_2_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlWen" is not found in dut, it should satisfy rule "ioout_2_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_2_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_waitForward" is not found in dut, it should satisfy rule "ioout_2_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_wfflags" is not found in dut, it should satisfy rule "ioout_2_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_ready" is not found in dut, it should satisfy rule "ioout_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_valid" is not found in dut, it should satisfy rule "ioout_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_3_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_3_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_commitType" is not found in dut, it should satisfy rule "ioout_3_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_firstUop" is not found in dut, it should satisfy rule "ioout_3_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_3_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_foldpc" is not found in dut, it should satisfy rule "ioout_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpWen" is not found in dut, it should satisfy rule "ioout_3_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_3_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuType" is not found in dut, it should satisfy rule "ioout_3_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_imm" is not found in dut, it should satisfy rule "ioout_3_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_instr" is not found in dut, it should satisfy rule "ioout_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isMove" is not found in dut, it should satisfy rule "ioout_3_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isVset" is not found in dut, it should satisfy rule "ioout_3_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_3_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lastUop" is not found in dut, it should satisfy rule "ioout_3_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ldest" is not found in dut, it should satisfy rule "ioout_3_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_numWB" is not found in dut, it should satisfy rule "ioout_3_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_rfWen" is not found in dut, it should satisfy rule "ioout_3_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_selImm" is not found in dut, it should satisfy rule "ioout_3_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_trigger" is not found in dut, it should satisfy rule "ioout_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_3_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_3_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_3_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vecWen" is not found in dut, it should satisfy rule "ioout_3_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlWen" is not found in dut, it should satisfy rule "ioout_3_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_3_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_waitForward" is not found in dut, it should satisfy rule "ioout_3_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_wfflags" is not found in dut, it should satisfy rule "ioout_3_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_ready" is not found in dut, it should satisfy rule "ioout_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_valid" is not found in dut, it should satisfy rule "ioout_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_4_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_4_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_commitType" is not found in dut, it should satisfy rule "ioout_4_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_firstUop" is not found in dut, it should satisfy rule "ioout_4_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_4_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_foldpc" is not found in dut, it should satisfy rule "ioout_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpWen" is not found in dut, it should satisfy rule "ioout_4_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_4_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuType" is not found in dut, it should satisfy rule "ioout_4_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_imm" is not found in dut, it should satisfy rule "ioout_4_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_instr" is not found in dut, it should satisfy rule "ioout_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isMove" is not found in dut, it should satisfy rule "ioout_4_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isVset" is not found in dut, it should satisfy rule "ioout_4_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_4_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lastUop" is not found in dut, it should satisfy rule "ioout_4_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ldest" is not found in dut, it should satisfy rule "ioout_4_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_numWB" is not found in dut, it should satisfy rule "ioout_4_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_rfWen" is not found in dut, it should satisfy rule "ioout_4_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_selImm" is not found in dut, it should satisfy rule "ioout_4_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_trigger" is not found in dut, it should satisfy rule "ioout_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_4_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_4_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_4_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vecWen" is not found in dut, it should satisfy rule "ioout_4_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlWen" is not found in dut, it should satisfy rule "ioout_4_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_4_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_waitForward" is not found in dut, it should satisfy rule "ioout_4_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_wfflags" is not found in dut, it should satisfy rule "ioout_4_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_ready" is not found in dut, it should satisfy rule "ioout_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_valid" is not found in dut, it should satisfy rule "ioout_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_5_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_5_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_commitType" is not found in dut, it should satisfy rule "ioout_5_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_firstUop" is not found in dut, it should satisfy rule "ioout_5_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_5_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_foldpc" is not found in dut, it should satisfy rule "ioout_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpWen" is not found in dut, it should satisfy rule "ioout_5_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_5_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuType" is not found in dut, it should satisfy rule "ioout_5_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_imm" is not found in dut, it should satisfy rule "ioout_5_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_instr" is not found in dut, it should satisfy rule "ioout_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isMove" is not found in dut, it should satisfy rule "ioout_5_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isVset" is not found in dut, it should satisfy rule "ioout_5_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_5_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lastUop" is not found in dut, it should satisfy rule "ioout_5_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ldest" is not found in dut, it should satisfy rule "ioout_5_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_numWB" is not found in dut, it should satisfy rule "ioout_5_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_rfWen" is not found in dut, it should satisfy rule "ioout_5_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_selImm" is not found in dut, it should satisfy rule "ioout_5_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_trigger" is not found in dut, it should satisfy rule "ioout_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_5_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_5_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_5_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vecWen" is not found in dut, it should satisfy rule "ioout_5_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlWen" is not found in dut, it should satisfy rule "ioout_5_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_5_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_waitForward" is not found in dut, it should satisfy rule "ioout_5_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_wfflags" is not found in dut, it should satisfy rule "ioout_5_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_ready" is not found in dut, it should satisfy rule "ioout_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_valid" is not found in dut, it should satisfy rule "ioout_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_0_value" is not found in dut, it should satisfy rule "ioperf_0_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_1_value" is not found in dut, it should satisfy rule "ioperf_1_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_2_value" is not found in dut, it should satisfy rule "ioperf_2_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_3_value" is not found in dut, it should satisfy rule "ioperf_3_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "redirect" is not found in dut, it should satisfy rule "ioredirect"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqOffset" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_value" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_instr" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_valid" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_addr" is not found in dut, it should satisfy rule "iovecRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_hold" is not found in dut, it should satisfy rule "iovecRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_addr" is not found in dut, it should satisfy rule "iovecRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_hold" is not found in dut, it should satisfy rule "iovecRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_addr" is not found in dut, it should satisfy rule "iovecRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_hold" is not found in dut, it should satisfy rule "iovecRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_addr" is not found in dut, it should satisfy rule "iovecRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_hold" is not found in dut, it should satisfy rule "iovecRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_addr" is not found in dut, it should satisfy rule "iovecRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_hold" is not found in dut, it should satisfy rule "iovecRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_addr" is not found in dut, it should satisfy rule "iovecRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_hold" is not found in dut, it should satisfy rule "iovecRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_addr" is not found in dut, it should satisfy rule "iovecRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_hold" is not found in dut, it should satisfy rule "iovecRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_addr" is not found in dut, it should satisfy rule "iovecRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_hold" is not found in dut, it should satisfy rule "iovecRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_addr" is not found in dut, it should satisfy rule "iovecRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_hold" is not found in dut, it should satisfy rule "iovecRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_addr" is not found in dut, it should satisfy rule "iovecRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_hold" is not found in dut, it should satisfy rule "iovecRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_addr" is not found in dut, it should satisfy rule "iovecRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_hold" is not found in dut, it should satisfy rule "iovecRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_addr" is not found in dut, it should satisfy rule "iovecRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_hold" is not found in dut, it should satisfy rule "iovecRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_addr" is not found in dut, it should satisfy rule "iovecRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_hold" is not found in dut, it should satisfy rule "iovecRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_addr" is not found in dut, it should satisfy rule "iovecRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_hold" is not found in dut, it should satisfy rule "iovecRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_addr" is not found in dut, it should satisfy rule "iovecRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_hold" is not found in dut, it should satisfy rule "iovecRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_addr" is not found in dut, it should satisfy rule "iovecRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_hold" is not found in dut, it should satisfy rule "iovecRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_addr" is not found in dut, it should satisfy rule "iovecRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_hold" is not found in dut, it should satisfy rule "iovecRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_addr" is not found in dut, it should satisfy rule "iovecRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_hold" is not found in dut, it should satisfy rule "iovecRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_illegal" is not found in dut, it should satisfy rule "iovsetvlVType_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vlmul" is not found in dut, it should satisfy rule "iovsetvlVType_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vma" is not found in dut, it should satisfy rule "iovsetvlVType_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vsew" is not found in dut, it should satisfy rule "iovsetvlVType_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vta" is not found in dut, it should satisfy rule "iovsetvlVType_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vstart" is not found in dut, it should satisfy rule "iovstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "iofsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ioill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "ioin"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "ioout_bits"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "iofsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ioill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "ioin"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "ioout_bits"

Call

Teardown

Captured log teardown
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

PASSED test_rvc_expand_16bit_full[32765-39318] 0:00:08.679040

Test the RVC expand function with a full compressed instruction set

Description:

Perform an expand check on 16-bit compressed instructions within the range from 'start' to 'end'.

Setup

Captured log setup
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

Call

Teardown

Captured log teardown
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

PASSED test_rvc_expand_16bit_full[39318-45871] 0:00:08.939887

Test the RVC expand function with a full compressed instruction set

Description:

Perform an expand check on 16-bit compressed instructions within the range from 'start' to 'end'.

Setup

Captured log setup
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

Call

Teardown

Captured log teardown
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

SKIPPED test_rvc_expand_32bit_full[0-429496729] 0:00:00.000236

Test the RVC expand function with a full 32 bit instruction set

Description:

Randomly generate N 32-bit instructions for each check, and repeat the process K times.

Setup

[gw1] linux -- Python 3.10.12 /usr/bin/python3
('/usr/local/lib/python3.10/dist-packages/toffee_test/markers.py', 37, "Skipped: In Skiped tags: 'RARELY_USED'")

Teardown

SKIPPED test_rvc_expand_32bit_full[1717986916-2147483645] 0:00:00.000219

Test the RVC expand function with a full 32 bit instruction set

Description:

Randomly generate N 32-bit instructions for each check, and repeat the process K times.

Setup

[gw1] linux -- Python 3.10.12 /usr/bin/python3
('/usr/local/lib/python3.10/dist-packages/toffee_test/markers.py', 37, "Skipped: In Skiped tags: 'RARELY_USED'")

Teardown

SKIPPED test_rvc_expand_32bit_full[2147483645-2576980374] 0:00:00.000219

Test the RVC expand function with a full 32 bit instruction set

Description:

Randomly generate N 32-bit instructions for each check, and repeat the process K times.

Setup

[gw1] linux -- Python 3.10.12 /usr/bin/python3
('/usr/local/lib/python3.10/dist-packages/toffee_test/markers.py', 37, "Skipped: In Skiped tags: 'RARELY_USED'")

Teardown

SKIPPED test_rvc_expand_32bit_full[2576980374-3006477103] 0:00:00.000232

Test the RVC expand function with a full 32 bit instruction set

Description:

Randomly generate N 32-bit instructions for each check, and repeat the process K times.

Setup

[gw1] linux -- Python 3.10.12 /usr/bin/python3
('/usr/local/lib/python3.10/dist-packages/toffee_test/markers.py', 37, "Skipped: In Skiped tags: 'RARELY_USED'")

Teardown

SKIPPED test_rvc_expand_32bit_full[3006477103-3435973832] 0:00:00.000217

Test the RVC expand function with a full 32 bit instruction set

Description:

Randomly generate N 32-bit instructions for each check, and repeat the process K times.

Setup

[gw1] linux -- Python 3.10.12 /usr/bin/python3
('/usr/local/lib/python3.10/dist-packages/toffee_test/markers.py', 37, "Skipped: In Skiped tags: 'RARELY_USED'")

Teardown

SKIPPED test_rvc_expand_32bit_full[3435973832-3865470561] 0:00:00.000220

Test the RVC expand function with a full 32 bit instruction set

Description:

Randomly generate N 32-bit instructions for each check, and repeat the process K times.

Setup

[gw1] linux -- Python 3.10.12 /usr/bin/python3
('/usr/local/lib/python3.10/dist-packages/toffee_test/markers.py', 37, "Skipped: In Skiped tags: 'RARELY_USED'")

Teardown

SKIPPED test_rvc_expand_32bit_full[3865470561-4294967296] 0:00:00.000216

Test the RVC expand function with a full 32 bit instruction set

Description:

Randomly generate N 32-bit instructions for each check, and repeat the process K times.

Setup

[gw1] linux -- Python 3.10.12 /usr/bin/python3
('/usr/local/lib/python3.10/dist-packages/toffee_test/markers.py', 37, "Skipped: In Skiped tags: 'RARELY_USED'")

Teardown

SKIPPED test_rvc_expand_32bit_randomN 0:00:00.000303

Test the RVC expand function with a random 32 bit instruction set

Description:

Randomly generate 32-bit instructions for testing

Setup

[gw1] linux -- Python 3.10.12 /usr/bin/python3
('/home/UnityChipForXiangShan/ut_frontend/ifu/rvc_expander/toffee_version/test/test_rvc.py', 133, 'Skipped: This test is allways failed, need to be fixed')

Teardown

PASSED test_rvc_expand_16bit_full[45871-52424] 0:00:08.583848

Test the RVC expand function with a full compressed instruction set

Description:

Perform an expand check on 16-bit compressed instructions within the range from 'start' to 'end'.

Setup

Captured log setup
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

Call

Teardown

Captured log teardown
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

SKIPPED test_rvc_expand_32bit_full[429496729-858993458] 0:00:00.000249

Test the RVC expand function with a full 32 bit instruction set

Description:

Randomly generate N 32-bit instructions for each check, and repeat the process K times.

Setup

[gw2] linux -- Python 3.10.12 /usr/bin/python3
('/usr/local/lib/python3.10/dist-packages/toffee_test/markers.py', 37, "Skipped: In Skiped tags: 'RARELY_USED'")

Teardown

PASSED test_rvc_expand_16bit_full[58977-65536] 0:00:05.216353

Test the RVC expand function with a full compressed instruction set

Description:

Perform an expand check on 16-bit compressed instructions within the range from 'start' to 'end'.

Setup

Captured log setup
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

Call

Teardown

Captured log teardown
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

SKIPPED test_rvc_expand_32bit_full[1288490187-1717986916] 0:00:00.000236

Test the RVC expand function with a full 32 bit instruction set

Description:

Randomly generate N 32-bit instructions for each check, and repeat the process K times.

Setup

[gw3] linux -- Python 3.10.12 /usr/bin/python3
('/usr/local/lib/python3.10/dist-packages/toffee_test/markers.py', 37, "Skipped: In Skiped tags: 'RARELY_USED'")

Teardown

PASSED test_rvc_expand_16bit_full[52424-58977] 0:00:06.439595

Test the RVC expand function with a full compressed instruction set

Description:

Perform an expand check on 16-bit compressed instructions within the range from 'start' to 'end'.

Setup

Captured log setup
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "csrCtrl_singlestep" is not found in dut, it should satisfy rule "iocsrCtrl_singlestep"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_addr" is not found in dut, it should satisfy rule "iofpRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_hold" is not found in dut, it should satisfy rule "iofpRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_addr" is not found in dut, it should satisfy rule "iofpRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_hold" is not found in dut, it should satisfy rule "iofpRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_addr" is not found in dut, it should satisfy rule "iofpRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_hold" is not found in dut, it should satisfy rule "iofpRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_addr" is not found in dut, it should satisfy rule "iofpRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_hold" is not found in dut, it should satisfy rule "iofpRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_addr" is not found in dut, it should satisfy rule "iofpRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_hold" is not found in dut, it should satisfy rule "iofpRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_addr" is not found in dut, it should satisfy rule "iofpRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_hold" is not found in dut, it should satisfy rule "iofpRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_addr" is not found in dut, it should satisfy rule "iofpRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_hold" is not found in dut, it should satisfy rule "iofpRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_addr" is not found in dut, it should satisfy rule "iofpRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_hold" is not found in dut, it should satisfy rule "iofpRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_addr" is not found in dut, it should satisfy rule "iofpRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_hold" is not found in dut, it should satisfy rule "iofpRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_addr" is not found in dut, it should satisfy rule "iofpRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_hold" is not found in dut, it should satisfy rule "iofpRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_addr" is not found in dut, it should satisfy rule "iofpRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_hold" is not found in dut, it should satisfy rule "iofpRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_addr" is not found in dut, it should satisfy rule "iofpRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_hold" is not found in dut, it should satisfy rule "iofpRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_addr" is not found in dut, it should satisfy rule "iofpRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_hold" is not found in dut, it should satisfy rule "iofpRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_addr" is not found in dut, it should satisfy rule "iofpRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_hold" is not found in dut, it should satisfy rule "iofpRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_addr" is not found in dut, it should satisfy rule "iofpRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_hold" is not found in dut, it should satisfy rule "iofpRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_addr" is not found in dut, it should satisfy rule "iofpRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_hold" is not found in dut, it should satisfy rule "iofpRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_addr" is not found in dut, it should satisfy rule "iofpRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_hold" is not found in dut, it should satisfy rule "iofpRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_addr" is not found in dut, it should satisfy rule "iofpRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_hold" is not found in dut, it should satisfy rule "iofpRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_frm" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_frm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_fsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceGVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceGVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceVVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceVVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_vsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_vsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_special_cboI2F" is not found in dut, it should satisfy rule "iofromCSR_special_cboI2F"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hfence" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hfence"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_hasVsetvl" is not found in dut, it should satisfy rule "iofromRob_commitVType_hasVsetvl"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vma" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vta" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_valid" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_isResumeVType" is not found in dut, it should satisfy rule "iofromRob_isResumeVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkToArchVType" is not found in dut, it should satisfy rule "iofromRob_walkToArchVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vma" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vta" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_valid" is not found in dut, it should satisfy rule "iofromRob_walkVType_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_0" is not found in dut, it should satisfy rule "iofusion_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_1" is not found in dut, it should satisfy rule "iofusion_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_2" is not found in dut, it should satisfy rule "iofusion_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_3" is not found in dut, it should satisfy rule "iofusion_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_4" is not found in dut, it should satisfy rule "iofusion_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_foldpc" is not found in dut, it should satisfy rule "ioin_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_instr" is not found in dut, it should satisfy rule "ioin_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_0_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_trigger" is not found in dut, it should satisfy rule "ioin_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_ready" is not found in dut, it should satisfy rule "ioin_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_valid" is not found in dut, it should satisfy rule "ioin_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_foldpc" is not found in dut, it should satisfy rule "ioin_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_instr" is not found in dut, it should satisfy rule "ioin_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_1_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_trigger" is not found in dut, it should satisfy rule "ioin_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_ready" is not found in dut, it should satisfy rule "ioin_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_valid" is not found in dut, it should satisfy rule "ioin_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_foldpc" is not found in dut, it should satisfy rule "ioin_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_instr" is not found in dut, it should satisfy rule "ioin_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_2_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_trigger" is not found in dut, it should satisfy rule "ioin_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_ready" is not found in dut, it should satisfy rule "ioin_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_valid" is not found in dut, it should satisfy rule "ioin_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_foldpc" is not found in dut, it should satisfy rule "ioin_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_instr" is not found in dut, it should satisfy rule "ioin_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_3_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_trigger" is not found in dut, it should satisfy rule "ioin_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_ready" is not found in dut, it should satisfy rule "ioin_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_valid" is not found in dut, it should satisfy rule "ioin_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_foldpc" is not found in dut, it should satisfy rule "ioin_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_instr" is not found in dut, it should satisfy rule "ioin_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_4_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_trigger" is not found in dut, it should satisfy rule "ioin_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_ready" is not found in dut, it should satisfy rule "ioin_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_valid" is not found in dut, it should satisfy rule "ioin_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_foldpc" is not found in dut, it should satisfy rule "ioin_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_instr" is not found in dut, it should satisfy rule "ioin_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_5_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_trigger" is not found in dut, it should satisfy rule "ioin_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_ready" is not found in dut, it should satisfy rule "ioin_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_valid" is not found in dut, it should satisfy rule "ioin_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_addr" is not found in dut, it should satisfy rule "iointRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_hold" is not found in dut, it should satisfy rule "iointRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_addr" is not found in dut, it should satisfy rule "iointRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_hold" is not found in dut, it should satisfy rule "iointRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_addr" is not found in dut, it should satisfy rule "iointRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_hold" is not found in dut, it should satisfy rule "iointRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_addr" is not found in dut, it should satisfy rule "iointRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_hold" is not found in dut, it should satisfy rule "iointRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_addr" is not found in dut, it should satisfy rule "iointRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_hold" is not found in dut, it should satisfy rule "iointRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_addr" is not found in dut, it should satisfy rule "iointRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_hold" is not found in dut, it should satisfy rule "iointRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_addr" is not found in dut, it should satisfy rule "iointRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_hold" is not found in dut, it should satisfy rule "iointRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_addr" is not found in dut, it should satisfy rule "iointRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_hold" is not found in dut, it should satisfy rule "iointRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_addr" is not found in dut, it should satisfy rule "iointRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_hold" is not found in dut, it should satisfy rule "iointRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_addr" is not found in dut, it should satisfy rule "iointRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_hold" is not found in dut, it should satisfy rule "iointRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_addr" is not found in dut, it should satisfy rule "iointRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_hold" is not found in dut, it should satisfy rule "iointRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_addr" is not found in dut, it should satisfy rule "iointRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_hold" is not found in dut, it should satisfy rule "iointRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_0_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_0_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_commitType" is not found in dut, it should satisfy rule "ioout_0_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_firstUop" is not found in dut, it should satisfy rule "ioout_0_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_0_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_foldpc" is not found in dut, it should satisfy rule "ioout_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpWen" is not found in dut, it should satisfy rule "ioout_0_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_0_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuType" is not found in dut, it should satisfy rule "ioout_0_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_imm" is not found in dut, it should satisfy rule "ioout_0_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_instr" is not found in dut, it should satisfy rule "ioout_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isMove" is not found in dut, it should satisfy rule "ioout_0_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isVset" is not found in dut, it should satisfy rule "ioout_0_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_0_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lastUop" is not found in dut, it should satisfy rule "ioout_0_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ldest" is not found in dut, it should satisfy rule "ioout_0_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_numWB" is not found in dut, it should satisfy rule "ioout_0_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_rfWen" is not found in dut, it should satisfy rule "ioout_0_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_selImm" is not found in dut, it should satisfy rule "ioout_0_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_trigger" is not found in dut, it should satisfy rule "ioout_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_0_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_0_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_0_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vecWen" is not found in dut, it should satisfy rule "ioout_0_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlWen" is not found in dut, it should satisfy rule "ioout_0_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_0_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_waitForward" is not found in dut, it should satisfy rule "ioout_0_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_wfflags" is not found in dut, it should satisfy rule "ioout_0_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_ready" is not found in dut, it should satisfy rule "ioout_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_valid" is not found in dut, it should satisfy rule "ioout_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_1_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_1_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_commitType" is not found in dut, it should satisfy rule "ioout_1_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_firstUop" is not found in dut, it should satisfy rule "ioout_1_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_1_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_foldpc" is not found in dut, it should satisfy rule "ioout_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpWen" is not found in dut, it should satisfy rule "ioout_1_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_1_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuType" is not found in dut, it should satisfy rule "ioout_1_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_imm" is not found in dut, it should satisfy rule "ioout_1_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_instr" is not found in dut, it should satisfy rule "ioout_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isMove" is not found in dut, it should satisfy rule "ioout_1_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isVset" is not found in dut, it should satisfy rule "ioout_1_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_1_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lastUop" is not found in dut, it should satisfy rule "ioout_1_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ldest" is not found in dut, it should satisfy rule "ioout_1_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_numWB" is not found in dut, it should satisfy rule "ioout_1_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_rfWen" is not found in dut, it should satisfy rule "ioout_1_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_selImm" is not found in dut, it should satisfy rule "ioout_1_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_trigger" is not found in dut, it should satisfy rule "ioout_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_1_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_1_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_1_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vecWen" is not found in dut, it should satisfy rule "ioout_1_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlWen" is not found in dut, it should satisfy rule "ioout_1_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_1_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_waitForward" is not found in dut, it should satisfy rule "ioout_1_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_wfflags" is not found in dut, it should satisfy rule "ioout_1_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_ready" is not found in dut, it should satisfy rule "ioout_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_valid" is not found in dut, it should satisfy rule "ioout_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_2_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_2_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_commitType" is not found in dut, it should satisfy rule "ioout_2_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_firstUop" is not found in dut, it should satisfy rule "ioout_2_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_2_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_foldpc" is not found in dut, it should satisfy rule "ioout_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpWen" is not found in dut, it should satisfy rule "ioout_2_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_2_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuType" is not found in dut, it should satisfy rule "ioout_2_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_imm" is not found in dut, it should satisfy rule "ioout_2_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_instr" is not found in dut, it should satisfy rule "ioout_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isMove" is not found in dut, it should satisfy rule "ioout_2_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isVset" is not found in dut, it should satisfy rule "ioout_2_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_2_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lastUop" is not found in dut, it should satisfy rule "ioout_2_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ldest" is not found in dut, it should satisfy rule "ioout_2_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_numWB" is not found in dut, it should satisfy rule "ioout_2_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_rfWen" is not found in dut, it should satisfy rule "ioout_2_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_selImm" is not found in dut, it should satisfy rule "ioout_2_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_trigger" is not found in dut, it should satisfy rule "ioout_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_2_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_2_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_2_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vecWen" is not found in dut, it should satisfy rule "ioout_2_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlWen" is not found in dut, it should satisfy rule "ioout_2_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_2_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_waitForward" is not found in dut, it should satisfy rule "ioout_2_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_wfflags" is not found in dut, it should satisfy rule "ioout_2_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_ready" is not found in dut, it should satisfy rule "ioout_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_valid" is not found in dut, it should satisfy rule "ioout_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_3_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_3_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_commitType" is not found in dut, it should satisfy rule "ioout_3_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_firstUop" is not found in dut, it should satisfy rule "ioout_3_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_3_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_foldpc" is not found in dut, it should satisfy rule "ioout_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpWen" is not found in dut, it should satisfy rule "ioout_3_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_3_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuType" is not found in dut, it should satisfy rule "ioout_3_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_imm" is not found in dut, it should satisfy rule "ioout_3_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_instr" is not found in dut, it should satisfy rule "ioout_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isMove" is not found in dut, it should satisfy rule "ioout_3_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isVset" is not found in dut, it should satisfy rule "ioout_3_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_3_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lastUop" is not found in dut, it should satisfy rule "ioout_3_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ldest" is not found in dut, it should satisfy rule "ioout_3_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_numWB" is not found in dut, it should satisfy rule "ioout_3_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_rfWen" is not found in dut, it should satisfy rule "ioout_3_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_selImm" is not found in dut, it should satisfy rule "ioout_3_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_trigger" is not found in dut, it should satisfy rule "ioout_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_3_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_3_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_3_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vecWen" is not found in dut, it should satisfy rule "ioout_3_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlWen" is not found in dut, it should satisfy rule "ioout_3_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_3_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_waitForward" is not found in dut, it should satisfy rule "ioout_3_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_wfflags" is not found in dut, it should satisfy rule "ioout_3_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_ready" is not found in dut, it should satisfy rule "ioout_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_valid" is not found in dut, it should satisfy rule "ioout_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_4_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_4_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_commitType" is not found in dut, it should satisfy rule "ioout_4_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_firstUop" is not found in dut, it should satisfy rule "ioout_4_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_4_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_foldpc" is not found in dut, it should satisfy rule "ioout_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpWen" is not found in dut, it should satisfy rule "ioout_4_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_4_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuType" is not found in dut, it should satisfy rule "ioout_4_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_imm" is not found in dut, it should satisfy rule "ioout_4_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_instr" is not found in dut, it should satisfy rule "ioout_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isMove" is not found in dut, it should satisfy rule "ioout_4_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isVset" is not found in dut, it should satisfy rule "ioout_4_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_4_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lastUop" is not found in dut, it should satisfy rule "ioout_4_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ldest" is not found in dut, it should satisfy rule "ioout_4_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_numWB" is not found in dut, it should satisfy rule "ioout_4_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_rfWen" is not found in dut, it should satisfy rule "ioout_4_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_selImm" is not found in dut, it should satisfy rule "ioout_4_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_trigger" is not found in dut, it should satisfy rule "ioout_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_4_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_4_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_4_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vecWen" is not found in dut, it should satisfy rule "ioout_4_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlWen" is not found in dut, it should satisfy rule "ioout_4_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_4_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_waitForward" is not found in dut, it should satisfy rule "ioout_4_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_wfflags" is not found in dut, it should satisfy rule "ioout_4_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_ready" is not found in dut, it should satisfy rule "ioout_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_valid" is not found in dut, it should satisfy rule "ioout_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_5_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_5_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_commitType" is not found in dut, it should satisfy rule "ioout_5_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_firstUop" is not found in dut, it should satisfy rule "ioout_5_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_5_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_foldpc" is not found in dut, it should satisfy rule "ioout_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpWen" is not found in dut, it should satisfy rule "ioout_5_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_5_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuType" is not found in dut, it should satisfy rule "ioout_5_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_imm" is not found in dut, it should satisfy rule "ioout_5_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_instr" is not found in dut, it should satisfy rule "ioout_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isMove" is not found in dut, it should satisfy rule "ioout_5_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isVset" is not found in dut, it should satisfy rule "ioout_5_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_5_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lastUop" is not found in dut, it should satisfy rule "ioout_5_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ldest" is not found in dut, it should satisfy rule "ioout_5_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_numWB" is not found in dut, it should satisfy rule "ioout_5_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_rfWen" is not found in dut, it should satisfy rule "ioout_5_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_selImm" is not found in dut, it should satisfy rule "ioout_5_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_trigger" is not found in dut, it should satisfy rule "ioout_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_5_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_5_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_5_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vecWen" is not found in dut, it should satisfy rule "ioout_5_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlWen" is not found in dut, it should satisfy rule "ioout_5_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_5_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_waitForward" is not found in dut, it should satisfy rule "ioout_5_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_wfflags" is not found in dut, it should satisfy rule "ioout_5_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_ready" is not found in dut, it should satisfy rule "ioout_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_valid" is not found in dut, it should satisfy rule "ioout_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_0_value" is not found in dut, it should satisfy rule "ioperf_0_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_1_value" is not found in dut, it should satisfy rule "ioperf_1_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_2_value" is not found in dut, it should satisfy rule "ioperf_2_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_3_value" is not found in dut, it should satisfy rule "ioperf_3_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "redirect" is not found in dut, it should satisfy rule "ioredirect"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqOffset" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_value" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_instr" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_valid" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_addr" is not found in dut, it should satisfy rule "iovecRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_hold" is not found in dut, it should satisfy rule "iovecRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_addr" is not found in dut, it should satisfy rule "iovecRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_hold" is not found in dut, it should satisfy rule "iovecRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_addr" is not found in dut, it should satisfy rule "iovecRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_hold" is not found in dut, it should satisfy rule "iovecRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_addr" is not found in dut, it should satisfy rule "iovecRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_hold" is not found in dut, it should satisfy rule "iovecRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_addr" is not found in dut, it should satisfy rule "iovecRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_hold" is not found in dut, it should satisfy rule "iovecRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_addr" is not found in dut, it should satisfy rule "iovecRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_hold" is not found in dut, it should satisfy rule "iovecRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_addr" is not found in dut, it should satisfy rule "iovecRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_hold" is not found in dut, it should satisfy rule "iovecRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_addr" is not found in dut, it should satisfy rule "iovecRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_hold" is not found in dut, it should satisfy rule "iovecRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_addr" is not found in dut, it should satisfy rule "iovecRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_hold" is not found in dut, it should satisfy rule "iovecRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_addr" is not found in dut, it should satisfy rule "iovecRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_hold" is not found in dut, it should satisfy rule "iovecRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_addr" is not found in dut, it should satisfy rule "iovecRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_hold" is not found in dut, it should satisfy rule "iovecRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_addr" is not found in dut, it should satisfy rule "iovecRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_hold" is not found in dut, it should satisfy rule "iovecRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_addr" is not found in dut, it should satisfy rule "iovecRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_hold" is not found in dut, it should satisfy rule "iovecRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_addr" is not found in dut, it should satisfy rule "iovecRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_hold" is not found in dut, it should satisfy rule "iovecRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_addr" is not found in dut, it should satisfy rule "iovecRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_hold" is not found in dut, it should satisfy rule "iovecRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_addr" is not found in dut, it should satisfy rule "iovecRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_hold" is not found in dut, it should satisfy rule "iovecRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_addr" is not found in dut, it should satisfy rule "iovecRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_hold" is not found in dut, it should satisfy rule "iovecRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_addr" is not found in dut, it should satisfy rule "iovecRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_hold" is not found in dut, it should satisfy rule "iovecRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_illegal" is not found in dut, it should satisfy rule "iovsetvlVType_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vlmul" is not found in dut, it should satisfy rule "iovsetvlVType_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vma" is not found in dut, it should satisfy rule "iovsetvlVType_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vsew" is not found in dut, it should satisfy rule "iovsetvlVType_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vta" is not found in dut, it should satisfy rule "iovsetvlVType_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vstart" is not found in dut, it should satisfy rule "iovstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "iofsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ioill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "ioin"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "ioout_bits"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "csrCtrl_singlestep" is not found in dut, it should satisfy rule "iocsrCtrl_singlestep"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_addr" is not found in dut, it should satisfy rule "iofpRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_hold" is not found in dut, it should satisfy rule "iofpRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_addr" is not found in dut, it should satisfy rule "iofpRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_hold" is not found in dut, it should satisfy rule "iofpRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_addr" is not found in dut, it should satisfy rule "iofpRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_hold" is not found in dut, it should satisfy rule "iofpRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_addr" is not found in dut, it should satisfy rule "iofpRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_hold" is not found in dut, it should satisfy rule "iofpRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_addr" is not found in dut, it should satisfy rule "iofpRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_hold" is not found in dut, it should satisfy rule "iofpRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_addr" is not found in dut, it should satisfy rule "iofpRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_hold" is not found in dut, it should satisfy rule "iofpRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_addr" is not found in dut, it should satisfy rule "iofpRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_hold" is not found in dut, it should satisfy rule "iofpRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_addr" is not found in dut, it should satisfy rule "iofpRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_hold" is not found in dut, it should satisfy rule "iofpRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_addr" is not found in dut, it should satisfy rule "iofpRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_hold" is not found in dut, it should satisfy rule "iofpRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_addr" is not found in dut, it should satisfy rule "iofpRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_hold" is not found in dut, it should satisfy rule "iofpRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_addr" is not found in dut, it should satisfy rule "iofpRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_hold" is not found in dut, it should satisfy rule "iofpRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_addr" is not found in dut, it should satisfy rule "iofpRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_hold" is not found in dut, it should satisfy rule "iofpRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_addr" is not found in dut, it should satisfy rule "iofpRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_hold" is not found in dut, it should satisfy rule "iofpRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_addr" is not found in dut, it should satisfy rule "iofpRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_hold" is not found in dut, it should satisfy rule "iofpRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_addr" is not found in dut, it should satisfy rule "iofpRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_hold" is not found in dut, it should satisfy rule "iofpRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_addr" is not found in dut, it should satisfy rule "iofpRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_hold" is not found in dut, it should satisfy rule "iofpRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_addr" is not found in dut, it should satisfy rule "iofpRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_hold" is not found in dut, it should satisfy rule "iofpRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_addr" is not found in dut, it should satisfy rule "iofpRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_hold" is not found in dut, it should satisfy rule "iofpRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_frm" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_frm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_fsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceGVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceGVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceVVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceVVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_vsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_vsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_special_cboI2F" is not found in dut, it should satisfy rule "iofromCSR_special_cboI2F"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hfence" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hfence"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_hasVsetvl" is not found in dut, it should satisfy rule "iofromRob_commitVType_hasVsetvl"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vma" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vta" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_valid" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_isResumeVType" is not found in dut, it should satisfy rule "iofromRob_isResumeVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkToArchVType" is not found in dut, it should satisfy rule "iofromRob_walkToArchVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vma" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vta" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_valid" is not found in dut, it should satisfy rule "iofromRob_walkVType_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_0" is not found in dut, it should satisfy rule "iofusion_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_1" is not found in dut, it should satisfy rule "iofusion_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_2" is not found in dut, it should satisfy rule "iofusion_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_3" is not found in dut, it should satisfy rule "iofusion_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_4" is not found in dut, it should satisfy rule "iofusion_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_foldpc" is not found in dut, it should satisfy rule "ioin_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_instr" is not found in dut, it should satisfy rule "ioin_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_0_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_trigger" is not found in dut, it should satisfy rule "ioin_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_ready" is not found in dut, it should satisfy rule "ioin_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_valid" is not found in dut, it should satisfy rule "ioin_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_foldpc" is not found in dut, it should satisfy rule "ioin_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_instr" is not found in dut, it should satisfy rule "ioin_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_1_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_trigger" is not found in dut, it should satisfy rule "ioin_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_ready" is not found in dut, it should satisfy rule "ioin_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_valid" is not found in dut, it should satisfy rule "ioin_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_foldpc" is not found in dut, it should satisfy rule "ioin_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_instr" is not found in dut, it should satisfy rule "ioin_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_2_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_trigger" is not found in dut, it should satisfy rule "ioin_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_ready" is not found in dut, it should satisfy rule "ioin_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_valid" is not found in dut, it should satisfy rule "ioin_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_foldpc" is not found in dut, it should satisfy rule "ioin_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_instr" is not found in dut, it should satisfy rule "ioin_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_3_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_trigger" is not found in dut, it should satisfy rule "ioin_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_ready" is not found in dut, it should satisfy rule "ioin_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_valid" is not found in dut, it should satisfy rule "ioin_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_foldpc" is not found in dut, it should satisfy rule "ioin_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_instr" is not found in dut, it should satisfy rule "ioin_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_4_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_trigger" is not found in dut, it should satisfy rule "ioin_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_ready" is not found in dut, it should satisfy rule "ioin_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_valid" is not found in dut, it should satisfy rule "ioin_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_foldpc" is not found in dut, it should satisfy rule "ioin_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_instr" is not found in dut, it should satisfy rule "ioin_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_5_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_trigger" is not found in dut, it should satisfy rule "ioin_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_ready" is not found in dut, it should satisfy rule "ioin_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_valid" is not found in dut, it should satisfy rule "ioin_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_addr" is not found in dut, it should satisfy rule "iointRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_hold" is not found in dut, it should satisfy rule "iointRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_addr" is not found in dut, it should satisfy rule "iointRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_hold" is not found in dut, it should satisfy rule "iointRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_addr" is not found in dut, it should satisfy rule "iointRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_hold" is not found in dut, it should satisfy rule "iointRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_addr" is not found in dut, it should satisfy rule "iointRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_hold" is not found in dut, it should satisfy rule "iointRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_addr" is not found in dut, it should satisfy rule "iointRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_hold" is not found in dut, it should satisfy rule "iointRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_addr" is not found in dut, it should satisfy rule "iointRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_hold" is not found in dut, it should satisfy rule "iointRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_addr" is not found in dut, it should satisfy rule "iointRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_hold" is not found in dut, it should satisfy rule "iointRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_addr" is not found in dut, it should satisfy rule "iointRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_hold" is not found in dut, it should satisfy rule "iointRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_addr" is not found in dut, it should satisfy rule "iointRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_hold" is not found in dut, it should satisfy rule "iointRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_addr" is not found in dut, it should satisfy rule "iointRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_hold" is not found in dut, it should satisfy rule "iointRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_addr" is not found in dut, it should satisfy rule "iointRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_hold" is not found in dut, it should satisfy rule "iointRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_addr" is not found in dut, it should satisfy rule "iointRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_hold" is not found in dut, it should satisfy rule "iointRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_0_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_0_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_commitType" is not found in dut, it should satisfy rule "ioout_0_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_firstUop" is not found in dut, it should satisfy rule "ioout_0_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_0_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_foldpc" is not found in dut, it should satisfy rule "ioout_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpWen" is not found in dut, it should satisfy rule "ioout_0_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_0_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuType" is not found in dut, it should satisfy rule "ioout_0_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_imm" is not found in dut, it should satisfy rule "ioout_0_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_instr" is not found in dut, it should satisfy rule "ioout_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isMove" is not found in dut, it should satisfy rule "ioout_0_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isVset" is not found in dut, it should satisfy rule "ioout_0_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_0_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lastUop" is not found in dut, it should satisfy rule "ioout_0_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ldest" is not found in dut, it should satisfy rule "ioout_0_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_numWB" is not found in dut, it should satisfy rule "ioout_0_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_rfWen" is not found in dut, it should satisfy rule "ioout_0_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_selImm" is not found in dut, it should satisfy rule "ioout_0_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_trigger" is not found in dut, it should satisfy rule "ioout_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_0_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_0_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_0_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vecWen" is not found in dut, it should satisfy rule "ioout_0_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlWen" is not found in dut, it should satisfy rule "ioout_0_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_0_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_waitForward" is not found in dut, it should satisfy rule "ioout_0_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_wfflags" is not found in dut, it should satisfy rule "ioout_0_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_ready" is not found in dut, it should satisfy rule "ioout_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_valid" is not found in dut, it should satisfy rule "ioout_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_1_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_1_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_commitType" is not found in dut, it should satisfy rule "ioout_1_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_firstUop" is not found in dut, it should satisfy rule "ioout_1_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_1_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_foldpc" is not found in dut, it should satisfy rule "ioout_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpWen" is not found in dut, it should satisfy rule "ioout_1_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_1_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuType" is not found in dut, it should satisfy rule "ioout_1_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_imm" is not found in dut, it should satisfy rule "ioout_1_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_instr" is not found in dut, it should satisfy rule "ioout_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isMove" is not found in dut, it should satisfy rule "ioout_1_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isVset" is not found in dut, it should satisfy rule "ioout_1_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_1_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lastUop" is not found in dut, it should satisfy rule "ioout_1_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ldest" is not found in dut, it should satisfy rule "ioout_1_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_numWB" is not found in dut, it should satisfy rule "ioout_1_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_rfWen" is not found in dut, it should satisfy rule "ioout_1_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_selImm" is not found in dut, it should satisfy rule "ioout_1_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_trigger" is not found in dut, it should satisfy rule "ioout_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_1_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_1_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_1_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vecWen" is not found in dut, it should satisfy rule "ioout_1_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlWen" is not found in dut, it should satisfy rule "ioout_1_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_1_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_waitForward" is not found in dut, it should satisfy rule "ioout_1_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_wfflags" is not found in dut, it should satisfy rule "ioout_1_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_ready" is not found in dut, it should satisfy rule "ioout_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_valid" is not found in dut, it should satisfy rule "ioout_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_2_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_2_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_commitType" is not found in dut, it should satisfy rule "ioout_2_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_firstUop" is not found in dut, it should satisfy rule "ioout_2_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_2_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_foldpc" is not found in dut, it should satisfy rule "ioout_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpWen" is not found in dut, it should satisfy rule "ioout_2_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_2_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuType" is not found in dut, it should satisfy rule "ioout_2_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_imm" is not found in dut, it should satisfy rule "ioout_2_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_instr" is not found in dut, it should satisfy rule "ioout_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isMove" is not found in dut, it should satisfy rule "ioout_2_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isVset" is not found in dut, it should satisfy rule "ioout_2_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_2_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lastUop" is not found in dut, it should satisfy rule "ioout_2_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ldest" is not found in dut, it should satisfy rule "ioout_2_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_numWB" is not found in dut, it should satisfy rule "ioout_2_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_rfWen" is not found in dut, it should satisfy rule "ioout_2_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_selImm" is not found in dut, it should satisfy rule "ioout_2_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_trigger" is not found in dut, it should satisfy rule "ioout_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_2_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_2_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_2_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vecWen" is not found in dut, it should satisfy rule "ioout_2_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlWen" is not found in dut, it should satisfy rule "ioout_2_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_2_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_waitForward" is not found in dut, it should satisfy rule "ioout_2_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_wfflags" is not found in dut, it should satisfy rule "ioout_2_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_ready" is not found in dut, it should satisfy rule "ioout_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_valid" is not found in dut, it should satisfy rule "ioout_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_3_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_3_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_commitType" is not found in dut, it should satisfy rule "ioout_3_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_firstUop" is not found in dut, it should satisfy rule "ioout_3_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_3_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_foldpc" is not found in dut, it should satisfy rule "ioout_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpWen" is not found in dut, it should satisfy rule "ioout_3_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_3_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuType" is not found in dut, it should satisfy rule "ioout_3_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_imm" is not found in dut, it should satisfy rule "ioout_3_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_instr" is not found in dut, it should satisfy rule "ioout_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isMove" is not found in dut, it should satisfy rule "ioout_3_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isVset" is not found in dut, it should satisfy rule "ioout_3_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_3_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lastUop" is not found in dut, it should satisfy rule "ioout_3_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ldest" is not found in dut, it should satisfy rule "ioout_3_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_numWB" is not found in dut, it should satisfy rule "ioout_3_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_rfWen" is not found in dut, it should satisfy rule "ioout_3_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_selImm" is not found in dut, it should satisfy rule "ioout_3_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_trigger" is not found in dut, it should satisfy rule "ioout_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_3_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_3_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_3_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vecWen" is not found in dut, it should satisfy rule "ioout_3_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlWen" is not found in dut, it should satisfy rule "ioout_3_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_3_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_waitForward" is not found in dut, it should satisfy rule "ioout_3_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_wfflags" is not found in dut, it should satisfy rule "ioout_3_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_ready" is not found in dut, it should satisfy rule "ioout_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_valid" is not found in dut, it should satisfy rule "ioout_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_4_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_4_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_commitType" is not found in dut, it should satisfy rule "ioout_4_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_firstUop" is not found in dut, it should satisfy rule "ioout_4_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_4_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_foldpc" is not found in dut, it should satisfy rule "ioout_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpWen" is not found in dut, it should satisfy rule "ioout_4_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_4_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuType" is not found in dut, it should satisfy rule "ioout_4_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_imm" is not found in dut, it should satisfy rule "ioout_4_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_instr" is not found in dut, it should satisfy rule "ioout_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isMove" is not found in dut, it should satisfy rule "ioout_4_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isVset" is not found in dut, it should satisfy rule "ioout_4_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_4_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lastUop" is not found in dut, it should satisfy rule "ioout_4_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ldest" is not found in dut, it should satisfy rule "ioout_4_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_numWB" is not found in dut, it should satisfy rule "ioout_4_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_rfWen" is not found in dut, it should satisfy rule "ioout_4_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_selImm" is not found in dut, it should satisfy rule "ioout_4_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_trigger" is not found in dut, it should satisfy rule "ioout_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_4_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_4_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_4_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vecWen" is not found in dut, it should satisfy rule "ioout_4_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlWen" is not found in dut, it should satisfy rule "ioout_4_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_4_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_waitForward" is not found in dut, it should satisfy rule "ioout_4_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_wfflags" is not found in dut, it should satisfy rule "ioout_4_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_ready" is not found in dut, it should satisfy rule "ioout_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_valid" is not found in dut, it should satisfy rule "ioout_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_5_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_5_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_commitType" is not found in dut, it should satisfy rule "ioout_5_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_firstUop" is not found in dut, it should satisfy rule "ioout_5_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_5_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_foldpc" is not found in dut, it should satisfy rule "ioout_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpWen" is not found in dut, it should satisfy rule "ioout_5_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_5_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuType" is not found in dut, it should satisfy rule "ioout_5_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_imm" is not found in dut, it should satisfy rule "ioout_5_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_instr" is not found in dut, it should satisfy rule "ioout_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isMove" is not found in dut, it should satisfy rule "ioout_5_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isVset" is not found in dut, it should satisfy rule "ioout_5_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_5_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lastUop" is not found in dut, it should satisfy rule "ioout_5_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ldest" is not found in dut, it should satisfy rule "ioout_5_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_numWB" is not found in dut, it should satisfy rule "ioout_5_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_rfWen" is not found in dut, it should satisfy rule "ioout_5_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_selImm" is not found in dut, it should satisfy rule "ioout_5_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_trigger" is not found in dut, it should satisfy rule "ioout_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_5_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_5_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_5_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vecWen" is not found in dut, it should satisfy rule "ioout_5_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlWen" is not found in dut, it should satisfy rule "ioout_5_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_5_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_waitForward" is not found in dut, it should satisfy rule "ioout_5_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_wfflags" is not found in dut, it should satisfy rule "ioout_5_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_ready" is not found in dut, it should satisfy rule "ioout_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_valid" is not found in dut, it should satisfy rule "ioout_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_0_value" is not found in dut, it should satisfy rule "ioperf_0_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_1_value" is not found in dut, it should satisfy rule "ioperf_1_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_2_value" is not found in dut, it should satisfy rule "ioperf_2_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_3_value" is not found in dut, it should satisfy rule "ioperf_3_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "redirect" is not found in dut, it should satisfy rule "ioredirect"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqOffset" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_value" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_instr" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_valid" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_addr" is not found in dut, it should satisfy rule "iovecRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_hold" is not found in dut, it should satisfy rule "iovecRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_addr" is not found in dut, it should satisfy rule "iovecRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_hold" is not found in dut, it should satisfy rule "iovecRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_addr" is not found in dut, it should satisfy rule "iovecRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_hold" is not found in dut, it should satisfy rule "iovecRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_addr" is not found in dut, it should satisfy rule "iovecRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_hold" is not found in dut, it should satisfy rule "iovecRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_addr" is not found in dut, it should satisfy rule "iovecRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_hold" is not found in dut, it should satisfy rule "iovecRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_addr" is not found in dut, it should satisfy rule "iovecRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_hold" is not found in dut, it should satisfy rule "iovecRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_addr" is not found in dut, it should satisfy rule "iovecRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_hold" is not found in dut, it should satisfy rule "iovecRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_addr" is not found in dut, it should satisfy rule "iovecRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_hold" is not found in dut, it should satisfy rule "iovecRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_addr" is not found in dut, it should satisfy rule "iovecRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_hold" is not found in dut, it should satisfy rule "iovecRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_addr" is not found in dut, it should satisfy rule "iovecRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_hold" is not found in dut, it should satisfy rule "iovecRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_addr" is not found in dut, it should satisfy rule "iovecRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_hold" is not found in dut, it should satisfy rule "iovecRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_addr" is not found in dut, it should satisfy rule "iovecRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_hold" is not found in dut, it should satisfy rule "iovecRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_addr" is not found in dut, it should satisfy rule "iovecRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_hold" is not found in dut, it should satisfy rule "iovecRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_addr" is not found in dut, it should satisfy rule "iovecRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_hold" is not found in dut, it should satisfy rule "iovecRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_addr" is not found in dut, it should satisfy rule "iovecRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_hold" is not found in dut, it should satisfy rule "iovecRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_addr" is not found in dut, it should satisfy rule "iovecRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_hold" is not found in dut, it should satisfy rule "iovecRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_addr" is not found in dut, it should satisfy rule "iovecRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_hold" is not found in dut, it should satisfy rule "iovecRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_addr" is not found in dut, it should satisfy rule "iovecRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_hold" is not found in dut, it should satisfy rule "iovecRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_illegal" is not found in dut, it should satisfy rule "iovsetvlVType_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vlmul" is not found in dut, it should satisfy rule "iovsetvlVType_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vma" is not found in dut, it should satisfy rule "iovsetvlVType_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vsew" is not found in dut, it should satisfy rule "iovsetvlVType_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vta" is not found in dut, it should satisfy rule "iovsetvlVType_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vstart" is not found in dut, it should satisfy rule "iovstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "iofsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ioill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "ioin"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "ioout_bits"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "iobits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_blockBackward" is not found in dut, it should satisfy rule "iobits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_canRobCompress" is not found in dut, it should satisfy rule "iobits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_commitType" is not found in dut, it should satisfy rule "iobits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_crossPageIPFFix" is not found in dut, it should satisfy rule "iobits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_0" is not found in dut, it should satisfy rule "iobits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_1" is not found in dut, it should satisfy rule "iobits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_10" is not found in dut, it should satisfy rule "iobits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_11" is not found in dut, it should satisfy rule "iobits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_12" is not found in dut, it should satisfy rule "iobits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_13" is not found in dut, it should satisfy rule "iobits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_14" is not found in dut, it should satisfy rule "iobits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_15" is not found in dut, it should satisfy rule "iobits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_16" is not found in dut, it should satisfy rule "iobits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_17" is not found in dut, it should satisfy rule "iobits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_18" is not found in dut, it should satisfy rule "iobits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_19" is not found in dut, it should satisfy rule "iobits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_2" is not found in dut, it should satisfy rule "iobits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_20" is not found in dut, it should satisfy rule "iobits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_21" is not found in dut, it should satisfy rule "iobits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_22" is not found in dut, it should satisfy rule "iobits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_23" is not found in dut, it should satisfy rule "iobits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_3" is not found in dut, it should satisfy rule "iobits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_4" is not found in dut, it should satisfy rule "iobits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_5" is not found in dut, it should satisfy rule "iobits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_6" is not found in dut, it should satisfy rule "iobits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_7" is not found in dut, it should satisfy rule "iobits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_8" is not found in dut, it should satisfy rule "iobits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_exceptionVec_9" is not found in dut, it should satisfy rule "iobits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_firstUop" is not found in dut, it should satisfy rule "iobits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_flushPipe" is not found in dut, it should satisfy rule "iobits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_foldpc" is not found in dut, it should satisfy rule "iobits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpWen" is not found in dut, it should satisfy rule "iobits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_rm" is not found in dut, it should satisfy rule "iobits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typ" is not found in dut, it should satisfy rule "iobits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "iobits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fpu_wflags" is not found in dut, it should satisfy rule "iobits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqOffset" is not found in dut, it should satisfy rule "iobits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iobits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ftqPtr_value" is not found in dut, it should satisfy rule "iobits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuOpType" is not found in dut, it should satisfy rule "iobits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_fuType" is not found in dut, it should satisfy rule "iobits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_imm" is not found in dut, it should satisfy rule "iobits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_instr" is not found in dut, it should satisfy rule "iobits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isFetchMalAddr" is not found in dut, it should satisfy rule "iobits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isMove" is not found in dut, it should satisfy rule "iobits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isVset" is not found in dut, it should satisfy rule "iobits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_isXSTrap" is not found in dut, it should satisfy rule "iobits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lastUop" is not found in dut, it should satisfy rule "iobits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_ldest" is not found in dut, it should satisfy rule "iobits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_0" is not found in dut, it should satisfy rule "iobits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_1" is not found in dut, it should satisfy rule "iobits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_lsrc_2" is not found in dut, it should satisfy rule "iobits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_numWB" is not found in dut, it should satisfy rule "iobits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "iobits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_pred_taken" is not found in dut, it should satisfy rule "iobits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_rfWen" is not found in dut, it should satisfy rule "iobits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_selImm" is not found in dut, it should satisfy rule "iobits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_0" is not found in dut, it should satisfy rule "iobits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_1" is not found in dut, it should satisfy rule "iobits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_2" is not found in dut, it should satisfy rule "iobits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_3" is not found in dut, it should satisfy rule "iobits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_srcType_4" is not found in dut, it should satisfy rule "iobits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_trigger" is not found in dut, it should satisfy rule "iobits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopIdx" is not found in dut, it should satisfy rule "iobits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_uopSplitType" is not found in dut, it should satisfy rule "iobits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_v0Wen" is not found in dut, it should satisfy rule "iobits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vecWen" is not found in dut, it should satisfy rule "iobits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlWen" is not found in dut, it should satisfy rule "iobits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vlsInstr" is not found in dut, it should satisfy rule "iobits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "iobits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "iobits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isDstMask" is not found in dut, it should satisfy rule "iobits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isExt" is not found in dut, it should satisfy rule "iobits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isNarrow" is not found in dut, it should satisfy rule "iobits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isOpMask" is not found in dut, it should satisfy rule "iobits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isVleff" is not found in dut, it should satisfy rule "iobits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "iobits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_nf" is not found in dut, it should satisfy rule "iobits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVill" is not found in dut, it should satisfy rule "iobits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVlmul" is not found in dut, it should satisfy rule "iobits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVma" is not found in dut, it should satisfy rule "iobits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVsew" is not found in dut, it should satisfy rule "iobits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_specVta" is not found in dut, it should satisfy rule "iobits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_veew" is not found in dut, it should satisfy rule "iobits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vill" is not found in dut, it should satisfy rule "iobits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vlmul" is not found in dut, it should satisfy rule "iobits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vm" is not found in dut, it should satisfy rule "iobits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vma" is not found in dut, it should satisfy rule "iobits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vsew" is not found in dut, it should satisfy rule "iobits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vstart" is not found in dut, it should satisfy rule "iobits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_vpu_vta" is not found in dut, it should satisfy rule "iobits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_waitForward" is not found in dut, it should satisfy rule "iobits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "bits_wfflags" is not found in dut, it should satisfy rule "iobits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ready" is not found in dut, it should satisfy rule "ioready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "valid" is not found in dut, it should satisfy rule "iovalid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "csrCtrl_singlestep" is not found in dut, it should satisfy rule "iocsrCtrl_singlestep"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_addr" is not found in dut, it should satisfy rule "iofpRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_0_hold" is not found in dut, it should satisfy rule "iofpRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_addr" is not found in dut, it should satisfy rule "iofpRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_1_hold" is not found in dut, it should satisfy rule "iofpRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_addr" is not found in dut, it should satisfy rule "iofpRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_0_2_hold" is not found in dut, it should satisfy rule "iofpRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_addr" is not found in dut, it should satisfy rule "iofpRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_0_hold" is not found in dut, it should satisfy rule "iofpRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_addr" is not found in dut, it should satisfy rule "iofpRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_1_hold" is not found in dut, it should satisfy rule "iofpRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_addr" is not found in dut, it should satisfy rule "iofpRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_1_2_hold" is not found in dut, it should satisfy rule "iofpRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_addr" is not found in dut, it should satisfy rule "iofpRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_0_hold" is not found in dut, it should satisfy rule "iofpRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_addr" is not found in dut, it should satisfy rule "iofpRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_1_hold" is not found in dut, it should satisfy rule "iofpRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_addr" is not found in dut, it should satisfy rule "iofpRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_2_2_hold" is not found in dut, it should satisfy rule "iofpRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_addr" is not found in dut, it should satisfy rule "iofpRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_0_hold" is not found in dut, it should satisfy rule "iofpRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_addr" is not found in dut, it should satisfy rule "iofpRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_1_hold" is not found in dut, it should satisfy rule "iofpRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_addr" is not found in dut, it should satisfy rule "iofpRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_3_2_hold" is not found in dut, it should satisfy rule "iofpRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_addr" is not found in dut, it should satisfy rule "iofpRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_0_hold" is not found in dut, it should satisfy rule "iofpRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_addr" is not found in dut, it should satisfy rule "iofpRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_1_hold" is not found in dut, it should satisfy rule "iofpRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_addr" is not found in dut, it should satisfy rule "iofpRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_4_2_hold" is not found in dut, it should satisfy rule "iofpRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_addr" is not found in dut, it should satisfy rule "iofpRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_0_hold" is not found in dut, it should satisfy rule "iofpRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_addr" is not found in dut, it should satisfy rule "iofpRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_1_hold" is not found in dut, it should satisfy rule "iofpRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_addr" is not found in dut, it should satisfy rule "iofpRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fpRat_5_2_hold" is not found in dut, it should satisfy rule "iofpRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_frm" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_frm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_fsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_fsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceGVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceGVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hfenceVVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hfenceVVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_vsIsOff" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_vsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_illegalInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_illegalInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_special_cboI2F" is not found in dut, it should satisfy rule "iofromCSR_special_cboI2F"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboCF" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboCF"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboI" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboI"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_cboZ" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_cboZ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hfence" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hfence"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_hlsv" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_hlsv"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfencePart" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfencePart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_sfenceVMA" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_sfenceVMA"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromCSR_virtualInst_wfi" is not found in dut, it should satisfy rule "iofromCSR_virtualInst_wfi"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_hasVsetvl" is not found in dut, it should satisfy rule "iofromRob_commitVType_hasVsetvl"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vma" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_bits_vta" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_commitVType_vtype_valid" is not found in dut, it should satisfy rule "iofromRob_commitVType_vtype_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_isResumeVType" is not found in dut, it should satisfy rule "iofromRob_isResumeVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkToArchVType" is not found in dut, it should satisfy rule "iofromRob_walkToArchVType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_illegal" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vlmul" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vma" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vsew" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_bits_vta" is not found in dut, it should satisfy rule "iofromRob_walkVType_bits_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fromRob_walkVType_valid" is not found in dut, it should satisfy rule "iofromRob_walkVType_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_0" is not found in dut, it should satisfy rule "iofusion_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_1" is not found in dut, it should satisfy rule "iofusion_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_2" is not found in dut, it should satisfy rule "iofusion_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_3" is not found in dut, it should satisfy rule "iofusion_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fusion_4" is not found in dut, it should satisfy rule "iofusion_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_foldpc" is not found in dut, it should satisfy rule "ioin_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_instr" is not found in dut, it should satisfy rule "ioin_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_0_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_bits_trigger" is not found in dut, it should satisfy rule "ioin_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_ready" is not found in dut, it should satisfy rule "ioin_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_0_valid" is not found in dut, it should satisfy rule "ioin_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_foldpc" is not found in dut, it should satisfy rule "ioin_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_instr" is not found in dut, it should satisfy rule "ioin_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_1_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_bits_trigger" is not found in dut, it should satisfy rule "ioin_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_ready" is not found in dut, it should satisfy rule "ioin_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_1_valid" is not found in dut, it should satisfy rule "ioin_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_foldpc" is not found in dut, it should satisfy rule "ioin_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_instr" is not found in dut, it should satisfy rule "ioin_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_2_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_bits_trigger" is not found in dut, it should satisfy rule "ioin_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_ready" is not found in dut, it should satisfy rule "ioin_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_2_valid" is not found in dut, it should satisfy rule "ioin_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_foldpc" is not found in dut, it should satisfy rule "ioin_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_instr" is not found in dut, it should satisfy rule "ioin_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_3_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_bits_trigger" is not found in dut, it should satisfy rule "ioin_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_ready" is not found in dut, it should satisfy rule "ioin_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_3_valid" is not found in dut, it should satisfy rule "ioin_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_foldpc" is not found in dut, it should satisfy rule "ioin_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_instr" is not found in dut, it should satisfy rule "ioin_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_4_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_bits_trigger" is not found in dut, it should satisfy rule "ioin_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_ready" is not found in dut, it should satisfy rule "ioin_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_4_valid" is not found in dut, it should satisfy rule "ioin_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioin_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioin_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_foldpc" is not found in dut, it should satisfy rule "ioin_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioin_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioin_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_instr" is not found in dut, it should satisfy rule "ioin_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioin_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_isLastInFtqEntry" is not found in dut, it should satisfy rule "ioin_5_bits_isLastInFtqEntry"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioin_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioin_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_bits_trigger" is not found in dut, it should satisfy rule "ioin_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_ready" is not found in dut, it should satisfy rule "ioin_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in_5_valid" is not found in dut, it should satisfy rule "ioin_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_addr" is not found in dut, it should satisfy rule "iointRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_0_hold" is not found in dut, it should satisfy rule "iointRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_addr" is not found in dut, it should satisfy rule "iointRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_0_1_hold" is not found in dut, it should satisfy rule "iointRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_addr" is not found in dut, it should satisfy rule "iointRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_0_hold" is not found in dut, it should satisfy rule "iointRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_addr" is not found in dut, it should satisfy rule "iointRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_1_1_hold" is not found in dut, it should satisfy rule "iointRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_addr" is not found in dut, it should satisfy rule "iointRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_0_hold" is not found in dut, it should satisfy rule "iointRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_addr" is not found in dut, it should satisfy rule "iointRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_2_1_hold" is not found in dut, it should satisfy rule "iointRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_addr" is not found in dut, it should satisfy rule "iointRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_0_hold" is not found in dut, it should satisfy rule "iointRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_addr" is not found in dut, it should satisfy rule "iointRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_3_1_hold" is not found in dut, it should satisfy rule "iointRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_addr" is not found in dut, it should satisfy rule "iointRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_0_hold" is not found in dut, it should satisfy rule "iointRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_addr" is not found in dut, it should satisfy rule "iointRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_4_1_hold" is not found in dut, it should satisfy rule "iointRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_addr" is not found in dut, it should satisfy rule "iointRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_0_hold" is not found in dut, it should satisfy rule "iointRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_addr" is not found in dut, it should satisfy rule "iointRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "intRat_5_1_hold" is not found in dut, it should satisfy rule "iointRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_0_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_0_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_commitType" is not found in dut, it should satisfy rule "ioout_0_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_0_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_0_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_firstUop" is not found in dut, it should satisfy rule "ioout_0_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_0_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_foldpc" is not found in dut, it should satisfy rule "ioout_0_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpWen" is not found in dut, it should satisfy rule "ioout_0_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_0_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_0_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_0_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_0_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_fuType" is not found in dut, it should satisfy rule "ioout_0_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_imm" is not found in dut, it should satisfy rule "ioout_0_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_instr" is not found in dut, it should satisfy rule "ioout_0_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_0_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isMove" is not found in dut, it should satisfy rule "ioout_0_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isVset" is not found in dut, it should satisfy rule "ioout_0_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_0_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lastUop" is not found in dut, it should satisfy rule "ioout_0_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_ldest" is not found in dut, it should satisfy rule "ioout_0_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_0_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_numWB" is not found in dut, it should satisfy rule "ioout_0_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_0_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_0_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_rfWen" is not found in dut, it should satisfy rule "ioout_0_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_selImm" is not found in dut, it should satisfy rule "ioout_0_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_0_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_trigger" is not found in dut, it should satisfy rule "ioout_0_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_0_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_0_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_0_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vecWen" is not found in dut, it should satisfy rule "ioout_0_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlWen" is not found in dut, it should satisfy rule "ioout_0_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_0_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_0_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_waitForward" is not found in dut, it should satisfy rule "ioout_0_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_bits_wfflags" is not found in dut, it should satisfy rule "ioout_0_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_ready" is not found in dut, it should satisfy rule "ioout_0_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_0_valid" is not found in dut, it should satisfy rule "ioout_0_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_1_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_1_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_commitType" is not found in dut, it should satisfy rule "ioout_1_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_1_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_1_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_firstUop" is not found in dut, it should satisfy rule "ioout_1_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_1_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_foldpc" is not found in dut, it should satisfy rule "ioout_1_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpWen" is not found in dut, it should satisfy rule "ioout_1_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_1_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_1_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_1_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_1_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_fuType" is not found in dut, it should satisfy rule "ioout_1_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_imm" is not found in dut, it should satisfy rule "ioout_1_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_instr" is not found in dut, it should satisfy rule "ioout_1_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_1_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isMove" is not found in dut, it should satisfy rule "ioout_1_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isVset" is not found in dut, it should satisfy rule "ioout_1_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_1_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lastUop" is not found in dut, it should satisfy rule "ioout_1_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_ldest" is not found in dut, it should satisfy rule "ioout_1_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_1_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_numWB" is not found in dut, it should satisfy rule "ioout_1_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_1_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_1_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_rfWen" is not found in dut, it should satisfy rule "ioout_1_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_selImm" is not found in dut, it should satisfy rule "ioout_1_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_1_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_trigger" is not found in dut, it should satisfy rule "ioout_1_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_1_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_1_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_1_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vecWen" is not found in dut, it should satisfy rule "ioout_1_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlWen" is not found in dut, it should satisfy rule "ioout_1_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_1_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_1_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_waitForward" is not found in dut, it should satisfy rule "ioout_1_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_bits_wfflags" is not found in dut, it should satisfy rule "ioout_1_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_ready" is not found in dut, it should satisfy rule "ioout_1_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_1_valid" is not found in dut, it should satisfy rule "ioout_1_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_2_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_2_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_commitType" is not found in dut, it should satisfy rule "ioout_2_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_2_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_2_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_firstUop" is not found in dut, it should satisfy rule "ioout_2_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_2_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_foldpc" is not found in dut, it should satisfy rule "ioout_2_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpWen" is not found in dut, it should satisfy rule "ioout_2_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_2_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_2_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_2_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_2_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_fuType" is not found in dut, it should satisfy rule "ioout_2_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_imm" is not found in dut, it should satisfy rule "ioout_2_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_instr" is not found in dut, it should satisfy rule "ioout_2_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_2_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isMove" is not found in dut, it should satisfy rule "ioout_2_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isVset" is not found in dut, it should satisfy rule "ioout_2_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_2_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lastUop" is not found in dut, it should satisfy rule "ioout_2_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_ldest" is not found in dut, it should satisfy rule "ioout_2_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_2_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_numWB" is not found in dut, it should satisfy rule "ioout_2_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_2_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_2_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_rfWen" is not found in dut, it should satisfy rule "ioout_2_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_selImm" is not found in dut, it should satisfy rule "ioout_2_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_2_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_trigger" is not found in dut, it should satisfy rule "ioout_2_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_2_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_2_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_2_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vecWen" is not found in dut, it should satisfy rule "ioout_2_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlWen" is not found in dut, it should satisfy rule "ioout_2_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_2_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_2_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_waitForward" is not found in dut, it should satisfy rule "ioout_2_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_bits_wfflags" is not found in dut, it should satisfy rule "ioout_2_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_ready" is not found in dut, it should satisfy rule "ioout_2_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_2_valid" is not found in dut, it should satisfy rule "ioout_2_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_3_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_3_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_commitType" is not found in dut, it should satisfy rule "ioout_3_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_3_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_3_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_firstUop" is not found in dut, it should satisfy rule "ioout_3_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_3_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_foldpc" is not found in dut, it should satisfy rule "ioout_3_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpWen" is not found in dut, it should satisfy rule "ioout_3_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_3_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_3_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_3_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_3_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_fuType" is not found in dut, it should satisfy rule "ioout_3_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_imm" is not found in dut, it should satisfy rule "ioout_3_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_instr" is not found in dut, it should satisfy rule "ioout_3_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_3_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isMove" is not found in dut, it should satisfy rule "ioout_3_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isVset" is not found in dut, it should satisfy rule "ioout_3_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_3_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lastUop" is not found in dut, it should satisfy rule "ioout_3_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_ldest" is not found in dut, it should satisfy rule "ioout_3_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_3_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_numWB" is not found in dut, it should satisfy rule "ioout_3_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_3_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_3_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_rfWen" is not found in dut, it should satisfy rule "ioout_3_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_selImm" is not found in dut, it should satisfy rule "ioout_3_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_3_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_trigger" is not found in dut, it should satisfy rule "ioout_3_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_3_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_3_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_3_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vecWen" is not found in dut, it should satisfy rule "ioout_3_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlWen" is not found in dut, it should satisfy rule "ioout_3_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_3_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_3_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_waitForward" is not found in dut, it should satisfy rule "ioout_3_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_bits_wfflags" is not found in dut, it should satisfy rule "ioout_3_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_ready" is not found in dut, it should satisfy rule "ioout_3_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_3_valid" is not found in dut, it should satisfy rule "ioout_3_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_4_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_4_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_commitType" is not found in dut, it should satisfy rule "ioout_4_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_4_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_4_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_firstUop" is not found in dut, it should satisfy rule "ioout_4_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_4_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_foldpc" is not found in dut, it should satisfy rule "ioout_4_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpWen" is not found in dut, it should satisfy rule "ioout_4_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_4_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_4_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_4_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_4_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_fuType" is not found in dut, it should satisfy rule "ioout_4_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_imm" is not found in dut, it should satisfy rule "ioout_4_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_instr" is not found in dut, it should satisfy rule "ioout_4_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_4_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isMove" is not found in dut, it should satisfy rule "ioout_4_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isVset" is not found in dut, it should satisfy rule "ioout_4_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_4_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lastUop" is not found in dut, it should satisfy rule "ioout_4_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_ldest" is not found in dut, it should satisfy rule "ioout_4_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_4_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_numWB" is not found in dut, it should satisfy rule "ioout_4_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_4_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_4_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_rfWen" is not found in dut, it should satisfy rule "ioout_4_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_selImm" is not found in dut, it should satisfy rule "ioout_4_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_4_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_trigger" is not found in dut, it should satisfy rule "ioout_4_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_4_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_4_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_4_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vecWen" is not found in dut, it should satisfy rule "ioout_4_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlWen" is not found in dut, it should satisfy rule "ioout_4_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_4_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_4_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_waitForward" is not found in dut, it should satisfy rule "ioout_4_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_bits_wfflags" is not found in dut, it should satisfy rule "ioout_4_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_ready" is not found in dut, it should satisfy rule "ioout_4_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_4_valid" is not found in dut, it should satisfy rule "ioout_4_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_blockBackward" is not found in dut, it should satisfy rule "ioout_5_bits_blockBackward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_canRobCompress" is not found in dut, it should satisfy rule "ioout_5_bits_canRobCompress"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_commitType" is not found in dut, it should satisfy rule "ioout_5_bits_commitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_crossPageIPFFix" is not found in dut, it should satisfy rule "ioout_5_bits_crossPageIPFFix"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_0" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_1" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_10" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_10"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_11" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_11"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_12" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_12"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_13" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_13"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_14" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_14"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_15" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_15"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_16" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_16"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_17" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_17"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_18" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_18"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_19" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_19"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_2" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_20" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_20"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_21" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_21"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_22" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_22"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_23" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_23"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_3" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_4" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_5" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_5"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_6" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_6"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_7" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_7"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_8" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_exceptionVec_9" is not found in dut, it should satisfy rule "ioout_5_bits_exceptionVec_9"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_firstUop" is not found in dut, it should satisfy rule "ioout_5_bits_firstUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_flushPipe" is not found in dut, it should satisfy rule "ioout_5_bits_flushPipe"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_foldpc" is not found in dut, it should satisfy rule "ioout_5_bits_foldpc"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpWen" is not found in dut, it should satisfy rule "ioout_5_bits_fpWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_rm" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_rm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typ" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typ"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_typeTagOut" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_typeTagOut"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fpu_wflags" is not found in dut, it should satisfy rule "ioout_5_bits_fpu_wflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqOffset" is not found in dut, it should satisfy rule "ioout_5_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ftqPtr_value" is not found in dut, it should satisfy rule "ioout_5_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuOpType" is not found in dut, it should satisfy rule "ioout_5_bits_fuOpType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_fuType" is not found in dut, it should satisfy rule "ioout_5_bits_fuType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_imm" is not found in dut, it should satisfy rule "ioout_5_bits_imm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_instr" is not found in dut, it should satisfy rule "ioout_5_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isFetchMalAddr" is not found in dut, it should satisfy rule "ioout_5_bits_isFetchMalAddr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isMove" is not found in dut, it should satisfy rule "ioout_5_bits_isMove"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isVset" is not found in dut, it should satisfy rule "ioout_5_bits_isVset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_isXSTrap" is not found in dut, it should satisfy rule "ioout_5_bits_isXSTrap"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lastUop" is not found in dut, it should satisfy rule "ioout_5_bits_lastUop"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_ldest" is not found in dut, it should satisfy rule "ioout_5_bits_ldest"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_0" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_1" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_lsrc_2" is not found in dut, it should satisfy rule "ioout_5_bits_lsrc_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_numWB" is not found in dut, it should satisfy rule "ioout_5_bits_numWB"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_brType" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_brType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_preDecodeInfo_isRVC" is not found in dut, it should satisfy rule "ioout_5_bits_preDecodeInfo_isRVC"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_pred_taken" is not found in dut, it should satisfy rule "ioout_5_bits_pred_taken"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_rfWen" is not found in dut, it should satisfy rule "ioout_5_bits_rfWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_selImm" is not found in dut, it should satisfy rule "ioout_5_bits_selImm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_0" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_0"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_1" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_1"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_2" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_3" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_3"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_srcType_4" is not found in dut, it should satisfy rule "ioout_5_bits_srcType_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_trigger" is not found in dut, it should satisfy rule "ioout_5_bits_trigger"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopIdx" is not found in dut, it should satisfy rule "ioout_5_bits_uopIdx"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_uopSplitType" is not found in dut, it should satisfy rule "ioout_5_bits_uopSplitType"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_v0Wen" is not found in dut, it should satisfy rule "ioout_5_bits_v0Wen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vecWen" is not found in dut, it should satisfy rule "ioout_5_bits_vecWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlWen" is not found in dut, it should satisfy rule "ioout_5_bits_vlWen"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vlsInstr" is not found in dut, it should satisfy rule "ioout_5_bits_vlsInstr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_2" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_2"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_4" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_4"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_fpu_isFoldTo1_8" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_fpu_isFoldTo1_8"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDependOldVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDependOldVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isDstMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isDstMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isExt" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isExt"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isNarrow" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isNarrow"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isOpMask" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isOpMask"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isVleff" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isVleff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_isWritePartVd" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_isWritePartVd"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_nf" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_nf"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_specVta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_specVta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_veew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_veew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vill" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vlmul" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vm" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vm"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vma" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vsew" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vstart" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_vpu_vta" is not found in dut, it should satisfy rule "ioout_5_bits_vpu_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_waitForward" is not found in dut, it should satisfy rule "ioout_5_bits_waitForward"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_bits_wfflags" is not found in dut, it should satisfy rule "ioout_5_bits_wfflags"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_ready" is not found in dut, it should satisfy rule "ioout_5_ready"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_5_valid" is not found in dut, it should satisfy rule "ioout_5_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_0_value" is not found in dut, it should satisfy rule "ioperf_0_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_1_value" is not found in dut, it should satisfy rule "ioperf_1_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_2_value" is not found in dut, it should satisfy rule "ioperf_2_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "perf_3_value" is not found in dut, it should satisfy rule "ioperf_3_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "redirect" is not found in dut, it should satisfy rule "ioredirect"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqOffset" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqOffset"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_flag" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_flag"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_ftqPtr_value" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_ftqPtr_value"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_bits_instr" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_bits_instr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "toCSR_trapInstInfo_valid" is not found in dut, it should satisfy rule "iotoCSR_trapInstInfo_valid"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_addr" is not found in dut, it should satisfy rule "iovecRat_0_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_0_hold" is not found in dut, it should satisfy rule "iovecRat_0_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_addr" is not found in dut, it should satisfy rule "iovecRat_0_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_1_hold" is not found in dut, it should satisfy rule "iovecRat_0_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_addr" is not found in dut, it should satisfy rule "iovecRat_0_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_0_2_hold" is not found in dut, it should satisfy rule "iovecRat_0_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_addr" is not found in dut, it should satisfy rule "iovecRat_1_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_0_hold" is not found in dut, it should satisfy rule "iovecRat_1_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_addr" is not found in dut, it should satisfy rule "iovecRat_1_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_1_hold" is not found in dut, it should satisfy rule "iovecRat_1_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_addr" is not found in dut, it should satisfy rule "iovecRat_1_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_1_2_hold" is not found in dut, it should satisfy rule "iovecRat_1_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_addr" is not found in dut, it should satisfy rule "iovecRat_2_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_0_hold" is not found in dut, it should satisfy rule "iovecRat_2_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_addr" is not found in dut, it should satisfy rule "iovecRat_2_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_1_hold" is not found in dut, it should satisfy rule "iovecRat_2_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_addr" is not found in dut, it should satisfy rule "iovecRat_2_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_2_2_hold" is not found in dut, it should satisfy rule "iovecRat_2_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_addr" is not found in dut, it should satisfy rule "iovecRat_3_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_0_hold" is not found in dut, it should satisfy rule "iovecRat_3_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_addr" is not found in dut, it should satisfy rule "iovecRat_3_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_1_hold" is not found in dut, it should satisfy rule "iovecRat_3_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_addr" is not found in dut, it should satisfy rule "iovecRat_3_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_3_2_hold" is not found in dut, it should satisfy rule "iovecRat_3_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_addr" is not found in dut, it should satisfy rule "iovecRat_4_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_0_hold" is not found in dut, it should satisfy rule "iovecRat_4_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_addr" is not found in dut, it should satisfy rule "iovecRat_4_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_1_hold" is not found in dut, it should satisfy rule "iovecRat_4_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_addr" is not found in dut, it should satisfy rule "iovecRat_4_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_4_2_hold" is not found in dut, it should satisfy rule "iovecRat_4_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_addr" is not found in dut, it should satisfy rule "iovecRat_5_0_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_0_hold" is not found in dut, it should satisfy rule "iovecRat_5_0_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_addr" is not found in dut, it should satisfy rule "iovecRat_5_1_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_1_hold" is not found in dut, it should satisfy rule "iovecRat_5_1_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_addr" is not found in dut, it should satisfy rule "iovecRat_5_2_addr"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vecRat_5_2_hold" is not found in dut, it should satisfy rule "iovecRat_5_2_hold"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_illegal" is not found in dut, it should satisfy rule "iovsetvlVType_illegal"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vlmul" is not found in dut, it should satisfy rule "iovsetvlVType_vlmul"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vma" is not found in dut, it should satisfy rule "iovsetvlVType_vma"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vsew" is not found in dut, it should satisfy rule "iovsetvlVType_vsew"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vsetvlVType_vta" is not found in dut, it should satisfy rule "iovsetvlVType_vta"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "vstart" is not found in dut, it should satisfy rule "iovstart"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "iofsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ioill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "ioin"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "ioout_bits"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "fsIsOff" is not found in dut, it should satisfy rule "iofsIsOff"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "ill" is not found in dut, it should satisfy rule "ioill"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "in" is not found in dut, it should satisfy rule "ioin"
WARNING  TOFFEE:bundle.py:983 The signal that can be connected to "out_bits" is not found in dut, it should satisfy rule "ioout_bits"

Call

Teardown

Captured log teardown
DEBUG    asyncio:selector_events.py:54 Using selector: EpollSelector

SKIPPED test_rvc_expand_32bit_full[858993458-1288490187] 0:00:00.000223

Test the RVC expand function with a full 32 bit instruction set

Description:

Randomly generate N 32-bit instructions for each check, and repeat the process K times.

Setup

[gw0] linux -- Python 3.10.12 /usr/bin/python3
('/usr/local/lib/python3.10/dist-packages/toffee_test/markers.py', 37, "Skipped: In Skiped tags: 'RARELY_USED'")

Teardown